summaryrefslogtreecommitdiffstats
path: root/BUILD.gn
diff options
context:
space:
mode:
authordpranke <dpranke@chromium.org>2015-11-18 19:12:27 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-19 03:13:19 +0000
commit9bb757129af95f0ca1539c65269cd8bc85df04f8 (patch)
tree3c5fa8908340ebd6e9e44d9521f175675cefcb49 /BUILD.gn
parentd15ad369c19ff184a0cc633bf133a18440d6c13a (diff)
downloadchromium_src-9bb757129af95f0ca1539c65269cd8bc85df04f8.zip
chromium_src-9bb757129af95f0ca1539c65269cd8bc85df04f8.tar.gz
chromium_src-9bb757129af95f0ca1539c65269cd8bc85df04f8.tar.bz2
Flip 'Linux x64' bot on chromium waterfall to GN.
This flips the Linux x64 bot on the chromium waterfall to GN, and cleans up some mistakes in the MB config (the builders should've been setting linux_dump_symbols=0, which is the default, not linux_dump_symbols=1). TBR=phajdan.jr@chromium.org, brettw@chromium.org BUG=530733, 432959 Review URL: https://codereview.chromium.org/1461453002 Cr-Commit-Position: refs/heads/master@{#360510}
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn7
1 files changed, 6 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index f58231f..b3e295d 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -824,7 +824,12 @@ group("chromium_builder_perf") {
deps += [ "//chrome/test:performance_browser_tests" ]
}
if (is_linux && !is_chromeos) {
- deps += [ "//chrome:linux_symbols" ]
+ if (is_official_build) {
+ # In GN builds, this is controlled by the 'linux_dump_symbols'
+ # flag, which defaults to 1 for official builds. For now,
+ # we skip the separate flag and just key off of is_official_build.
+ deps += [ "//chrome:linux_symbols" ]
+ }
if (!is_chromeos) {
deps += [ "//tools/perf/clear_system_cache" ]