diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 13:55:07 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 13:55:07 +0000 |
commit | a35aa36697780e1cbb5bc5fd89513eb74f3749b0 (patch) | |
tree | a6f9d90ba4a4ed7fb28698c9cfb6b68c815dd632 /build | |
parent | ef03ce65bfe05b28c453b38591100f67e50e5902 (diff) | |
download | chromium_src-a35aa36697780e1cbb5bc5fd89513eb74f3749b0.zip chromium_src-a35aa36697780e1cbb5bc5fd89513eb74f3749b0.tar.gz chromium_src-a35aa36697780e1cbb5bc5fd89513eb74f3749b0.tar.bz2 |
Add structural support for building chrome_browser_ui.gypi on iOS
This is not yet used, but helps lay the groundwork for building chrome/
targets for iOS.
This uses exclude-all-and-include since Chrome for iOS uses only a very
small portion of chrome/browser/ui/, so the include list will be much more
manageable and maintainable than an exclude list.
BUG=156699
Review URL: https://chromiumcodereview.appspot.com/11339010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164908 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index d017bee..e06636c 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -959,6 +959,7 @@ ['OS=="ios"', { 'disable_nacl%': 1, 'enable_gpu%': 0, + 'enable_task_manager%': 0, 'icu_use_data_file_flag%': 1, 'use_system_bzip2%': 1, 'use_system_libxml%': 1, @@ -1202,7 +1203,7 @@ ], }], - ['os_posix==1 and chromeos==0 and OS!="android"', { + ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', { 'use_cups%': 1, }, { 'use_cups%': 0, |