Skip to content

Commit

Permalink
Comment out all non-GN targets from the GN build.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
brettw@chromium.org committed Mar 18, 2014
1 parent 5daca04 commit dd316f6
Showing 1 changed file with 26 additions and 21 deletions.
47 changes: 26 additions & 21 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
}

0 comments on commit dd316f6

Please sign in to comment.