Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Unified Diff: device/wake_lock/BUILD.gn

Issue 2389743002: Content Modularization Project: Move Wake Lock to //device (Closed)
Patch Set: Eliminate frame reference Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/BUILD.gn ('k') | device/wake_lock/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
+}
« no previous file with comments | « device/BUILD.gn ('k') | device/wake_lock/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698