mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
30 lines
665 B
Plaintext
30 lines
665 B
Plaintext
# 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") {
|
|
visibility = [ "//services/device:*" ]
|
|
|
|
sources = [
|
|
"wake_lock.cc",
|
|
"wake_lock.h",
|
|
"wake_lock_context.cc",
|
|
"wake_lock_context.h",
|
|
"wake_lock_for_testing.cc",
|
|
"wake_lock_for_testing.h",
|
|
"wake_lock_provider.cc",
|
|
"wake_lock_provider.h",
|
|
]
|
|
|
|
public_deps = [
|
|
"//base",
|
|
"//mojo/public/cpp/bindings",
|
|
"//services/device/public/interfaces",
|
|
"//ui/gfx",
|
|
]
|
|
|
|
deps = [
|
|
"//services/device/wake_lock/power_save_blocker",
|
|
]
|
|
}
|