diff options
author | dschuff <dschuff@chromium.org> | 2014-09-04 21:54:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-05 04:56:58 +0000 |
commit | 47e06f8940c019e513f9b9f40b96f38ac46a18f6 (patch) | |
tree | 1e09ee5fb9a7def3df9f275756409e35043ad978 /base/base_nacl.gyp | |
parent | 23f694a6bbee081b607da240018edc7898719805 (diff) | |
download | chromium_src-47e06f8940c019e513f9b9f40b96f38ac46a18f6.zip chromium_src-47e06f8940c019e513f9b9f40b96f38ac46a18f6.tar.gz chromium_src-47e06f8940c019e513f9b9f40b96f38ac46a18f6.tar.bz2 |
Don't build base with nacl glibc and newlib toolchains
It's unnecessary because nothing appears to depend on it,
and it blocks use of C++11 in base.
The IRT build is still enabled because the IRT is the primary user of base_nacl.
The pnacl_newlib build is still enabled because the remoting client uses it.
BUG=360096
R=thakis@chromium.org,mseaborn@chromium.org
Review URL: https://codereview.chromium.org/540093002
Cr-Commit-Position: refs/heads/master@{#293442}
Diffstat (limited to 'base/base_nacl.gyp')
-rw-r--r-- | base/base_nacl.gyp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/base_nacl.gyp b/base/base_nacl.gyp index 5ef664c..0816d31 100644 --- a/base/base_nacl.gyp +++ b/base/base_nacl.gyp @@ -20,8 +20,8 @@ 'base_target': 1, 'nacl_untrusted_build': 1, 'nlib_target': 'libbase_nacl.a', - 'build_glibc': 1, - 'build_newlib': 1, + 'build_glibc': 0, + 'build_newlib': 0, 'build_irt': 1, 'build_pnacl_newlib': 1, 'sources': [ @@ -47,7 +47,7 @@ 'nacl_untrusted_build': 1, 'nlib_target': 'libbase_i18n_nacl.a', 'build_glibc': 0, - 'build_newlib': 1, + 'build_newlib': 0, 'build_irt': 0, 'build_pnacl_newlib': 1, 'sources': [ |