summaryrefslogtreecommitdiffstats
path: root/BUILD.gn
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-18 20:27:26 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-18 20:27:26 +0000
commitdd316f6c9aaa39096557b5179df638adedd461ec (patch)
tree30997e8155cc9caf377598898dcdc09cc361d9d1 /BUILD.gn
parent5daca04707be94c5b2991ae5e7f7ebd1c76352bc (diff)
downloadchromium_src-dd316f6c9aaa39096557b5179df638adedd461ec.zip
chromium_src-dd316f6c9aaa39096557b5179df638adedd461ec.tar.gz
chromium_src-dd316f6c9aaa39096557b5179df638adedd461ec.tar.bz2
Comment out all non-GN targets from the GN build.
Temporarily comment out all targets that aren't for building GN itself from the GN build to have a minimal known-good build that we can start running on the bots. Some of the other stuff is in various stages of completion and brokenness. R=dpranke@chromium.org Review URL: https://codereview.chromium.org/203893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257724 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn47
1 files changed, 26 insertions, 21 deletions
diff --git a/BUILD.gn b/BUILD.gn
index d7c5cd5..447d169 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -15,28 +15,33 @@ group("root") {
# ignored in the pure GN build.
external = true
+ # Note that some dependencies are commented out. These are things that are
+ # currently written but not hooked up to the build yet. They may need to be
+ # completed or possibly just tested and then re-enabled.
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",
+ # This is a temporary test of the not-yet-complete NaCl cross-compilation.
+ #"//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",
+ #"//url",
]
}