| Index: device/wake_lock/BUILD.gn
|
| diff --git a/device/wake_lock/BUILD.gn b/device/wake_lock/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3ba8339e324f45109e96de29cac14bb7bd4dec90
|
| --- /dev/null
|
| +++ b/device/wake_lock/BUILD.gn
|
| @@ -0,0 +1,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",
|
| + ]
|
| +}
|
|
|