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

Unified Diff: extensions/browser/api/idle/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: win fix Created 4 years, 3 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
Index: extensions/browser/api/idle/BUILD.gn
diff --git a/extensions/browser/api/idle/BUILD.gn b/extensions/browser/api/idle/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..69dd1dbe3f6b71c01ca9fa008a544ba5a26d2d1c
--- /dev/null
+++ b/extensions/browser/api/idle/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2015 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("idle") {
+ sources = [
+ "idle_api.cc",
+ "idle_api.h",
+ "idle_api_constants.cc",
+ "idle_api_constants.h",
+ "idle_manager.cc",
+ "idle_manager.h",
+ "idle_manager_factory.cc",
+ "idle_manager_factory.h",
+ ]
+
+ deps = [
+ "//content/public/browser",
+ "//skia",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698