blob: 3ba8339e324f45109e96de29cac14bb7bd4dec90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("wake_lock") {
sources = [
"wake_lock_service_context.cc",
"wake_lock_service_context.h",
"wake_lock_service_impl.cc",
"wake_lock_service_impl.h",
]
public_deps = [
"//base",
"//device/wake_lock/public/interfaces",
"//mojo/public/cpp/bindings",
"//ui/gfx",
]
deps = [
"//device/power_save_blocker",
]
}
|