summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2014-02-21 12:16:55 +0000
committerTorne (Richard Coles) <torne@google.com>2014-02-21 12:16:55 +0000
commit5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7 (patch)
tree5d4ae202b870bd86673f596f0d424bc4b3e55ebe /BUILD.gn
parente862bac9c33104a29d98631d62668ae7b6676510 (diff)
downloadchromium_org-5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7.tar.gz
Merge from Chromium at DEPS revision 251904
This commit was generated by merge_to_master.py. Change-Id: I1f9543259d7d2a57d81aa41a1b84f85837439d21
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn42
1 files changed, 42 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
new file mode 100644
index 0000000000..d7c5cd5d03
--- /dev/null
+++ b/BUILD.gn
@@ -0,0 +1,42 @@
+# Copyright (c) 2013 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.
+
+# This is the root build file for GN. GN will start processing by loading this
+# file, and recursively load all dependencies until all dependencies are either
+# resolved or known not to exist (which will cause the build to fail). So if
+# you add a new build file, there must be some path of dependencies from this
+# file to your new one or GN won't know about it.
+
+# In GN, a "group" is a dummy target that just lists other targets.
+group("root") {
+ # Declares that this target should be treated as "external" in the GN-GYP
+ # hybrid build, and GN will not generate a GYP file for it. This flag is
+ # ignored in the pure GN build.
+ external = true
+
+ deps = [
+ "//base(//build/toolchain/nacl:x86_newlib)",
+ "//chrome",
+ "//components/language_usage_metrics",
+ "//components/navigation_metrics",
+ "//components/onc:onc_component",
+ "//components/startup_metric_utils",
+ "//components/translate:translate_core_browser",
+ "//components/translate:translate_core_common",
+ "//crypto",
+ "//device/usb:device_usb",
+ "//ipc",
+ "//net",
+ "//net/third_party/nss:ssl",
+ "//sdch",
+ "//third_party/WebKit/Source/platform",
+ "//third_party/icu:icudata",
+ "//third_party/leveldatabase",
+ "//third_party/libpng",
+ "//third_party/zlib",
+ "//skia",
+ "//tools/gn",
+ "//url",
+ ]
+}