summaryrefslogtreecommitdiffstats
path: root/build/config/chrome_build.gni
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-07-15 09:11:50 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-15 16:12:20 +0000
commitfd1c6721afa39afa7f9d8a36f3faa683061726e9 (patch)
tree8c42f6560d74b3395118dc8270479b440fc0cfdd /build/config/chrome_build.gni
parent573e8be6d639b7066a270ae99d02e829e10b90dd (diff)
downloadchromium_src-fd1c6721afa39afa7f9d8a36f3faa683061726e9.zip
chromium_src-fd1c6721afa39afa7f9d8a36f3faa683061726e9.tar.gz
chromium_src-fd1c6721afa39afa7f9d8a36f3faa683061726e9.tar.bz2
Move build flags to .gni file.
Add comments to build config about target setup. Review URL: https://codereview.chromium.org/1168223003 Cr-Commit-Position: refs/heads/master@{#338865}
Diffstat (limited to 'build/config/chrome_build.gni')
-rw-r--r--build/config/chrome_build.gni7
1 files changed, 2 insertions, 5 deletions
diff --git a/build/config/chrome_build.gni b/build/config/chrome_build.gni
index e2ff123..c2132c4 100644
--- a/build/config/chrome_build.gni
+++ b/build/config/chrome_build.gni
@@ -6,17 +6,14 @@ declare_args() {
# Selects the desired build flavor. Official builds get additional
# processing to prepare for release. Normally you will want to develop and
# test with this flag off.
- # TODO(brettw) move here from BUILDCONFIG.gn when DEPS are updated.
- #is_official_build = false
+ is_official_build = false
# Select the desired branding flavor. False means normal Chromium branding,
# true means official Google Chrome branding (requires extra Google-internal
# resources).
- # TODO(brettw) move here from BUILDCONFIG.gn when DEPS are updated.
- #is_chrome_branded = false
+ is_chrome_branded = false
# Break chrome.dll into multple pieces based on process type. Only available
# on Windows.
- # TODO(brettw) make this work. When it does, the declaration should be:
is_multi_dll_chrome = is_win && !is_component_build
}