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

Unified Diff: chrome/BUILD.gn

Issue 335053002: Add GN build for some chrome common, chrome net, and resources targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix sorting Created 6 years, 6 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 | « build/config/features.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..3aeafb07849b67f5efcc8dd8e41014a856734305
--- /dev/null
+++ b/chrome/BUILD.gn
@@ -0,0 +1,21 @@
+# 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.
+
+import("//build/config/features.gni")
+
+# GYP version: chrome/chrome_resources.gyp:chrome_resources
+group("resources") {
+ deps = [
+ # Note: GYP lists some dependencies in addition to these actions. However,
+ # these are just dependencies for the actions themselves, which our actions
+ # list individually when needed.
+ "//chrome/browser:resources",
+ "//chrome/common:resources",
+ "//chrome/renderer:resources",
+ ]
+
+ if (enable_extensions) {
+ deps += [ "//chrome/common:extensions_api_resources" ]
+ }
+}
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698