diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-02 22:14:53 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-02 22:14:53 +0000 |
commit | 6dfe7d39fe4beb3ac1d43962ed9b952bf46b9601 (patch) | |
tree | cec2008a5278e9635b309f0f1fe0721831ab4727 /build/gyp_chromium | |
parent | f667d1a4d5729fe743909e253304e7e679415946 (diff) | |
download | chromium_src-6dfe7d39fe4beb3ac1d43962ed9b952bf46b9601.zip chromium_src-6dfe7d39fe4beb3ac1d43962ed9b952bf46b9601.tar.gz chromium_src-6dfe7d39fe4beb3ac1d43962ed9b952bf46b9601.tar.bz2 |
envsetup: Remove host_arch bitness check, let android_gyp print that it's going away.
Since it's no longer necessary to source envsetup, having a bitness check in
here isn't very useful.
Let build/gyp_chromium always pass --check for android so that it behaves the
same as android_gyp and let android_gyp print a note that it'll disappear
eventually.
BUG=330631
NOTRY=true
Review URL: https://codereview.chromium.org/222203005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261195 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 210df12..ca00a54 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -283,6 +283,8 @@ if __name__ == '__main__': gyp_vars_dict.get('OS') in ['android', 'ios'], 'GYP_CROSSCOMPILE' not in os.environ)): os.environ['GYP_CROSSCOMPILE'] = '1' + if gyp_vars_dict.get('OS') == 'android': + args.append('--check') args.extend( ['-I' + i for i in additional_include_files(supplemental_includes, args)]) |