diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-25 22:23:17 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-25 22:23:17 +0000 |
commit | dbd915b46e952364ad911640fef194b6f36076f9 (patch) | |
tree | 9f297bba036484d9952d43464ee48bd6ebd80303 /tools/gn/secondary/build | |
parent | bc6cc6f9b04138e9fd09f00a9d00633734189af9 (diff) | |
download | chromium_src-dbd915b46e952364ad911640fef194b6f36076f9.zip chromium_src-dbd915b46e952364ad911640fef194b6f36076f9.tar.gz chromium_src-dbd915b46e952364ad911640fef194b6f36076f9.tar.bz2 |
Fix the output of "gn args" for the OS and CPU architecture.
The internal declarations of these weren't getting set correctly. This only affects the output of "gn args".
BUG=
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/40533003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231134 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/gn/secondary/build')
-rw-r--r-- | tools/gn/secondary/build/config/BUILDCONFIG.gn | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gn/secondary/build/config/BUILDCONFIG.gn b/tools/gn/secondary/build/config/BUILDCONFIG.gn index 1ae5e55..78a3f27 100644 --- a/tools/gn/secondary/build/config/BUILDCONFIG.gn +++ b/tools/gn/secondary/build/config/BUILDCONFIG.gn @@ -34,10 +34,13 @@ declare_args() { is_clang = false # ASH is enabled. + # TODO(brettw) this should be moved out of the main build config file. use_ash = false # Aura is enabled. + # TODO(brettw) this should be moved out of the main build config file. use_aura = false # Ozone is enabled. + # TODO(brettw) this should be moved out of the main build config file. use_ozone = false } |