naiveproxy/services/device/wake_lock/BUILD.gn
2018-02-02 05:49:39 -05:00

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",
]
}