Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: build/common.gypi

Issue 11339010: Add structural support for building chrome_browser_ui.gypi on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add relevant use_/enable_ support to common.gypi Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | chrome/chrome_browser_ui.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 # All Chrome builds have breakpad symbols, but only process the 953 # All Chrome builds have breakpad symbols, but only process the
954 # symbols from official builds. 954 # symbols from official builds.
955 ['(branding=="Chrome" and buildtype=="Official")', { 955 ['(branding=="Chrome" and buildtype=="Official")', {
956 'linux_dump_symbols%': 1, 956 'linux_dump_symbols%': 1,
957 }], 957 }],
958 ], 958 ],
959 }], # os_posix==1 and OS!="mac" and OS!="ios" 959 }], # os_posix==1 and OS!="mac" and OS!="ios"
960 ['OS=="ios"', { 960 ['OS=="ios"', {
961 'disable_nacl%': 1, 961 'disable_nacl%': 1,
962 'enable_gpu%': 0, 962 'enable_gpu%': 0,
963 'enable_task_manager%': 0,
963 'icu_use_data_file_flag%': 1, 964 'icu_use_data_file_flag%': 1,
964 'use_system_bzip2%': 1, 965 'use_system_bzip2%': 1,
965 'use_system_libxml%': 1, 966 'use_system_libxml%': 1,
966 'use_system_sqlite%': 1, 967 'use_system_sqlite%': 1,
967 968
968 # The Mac SDK is set for iOS builds and passed through to Mac 969 # The Mac SDK is set for iOS builds and passed through to Mac
969 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be 970 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be
970 # overridden from the command line the same way it is for a Mac build. 971 # overridden from the command line the same way it is for a Mac build.
971 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)', 972 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)',
972 973
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1196 'secure_atl%': 1, 1197 'secure_atl%': 1,
1197 }], 1198 }],
1198 ], 1199 ],
1199 'nacl_win64_defines': [ 1200 'nacl_win64_defines': [
1200 # This flag is used to minimize dependencies when building 1201 # This flag is used to minimize dependencies when building
1201 # Native Client loader for 64-bit Windows. 1202 # Native Client loader for 64-bit Windows.
1202 'NACL_WIN64', 1203 'NACL_WIN64',
1203 ], 1204 ],
1204 }], 1205 }],
1205 1206
1206 ['os_posix==1 and chromeos==0 and OS!="android"', { 1207 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', {
1207 'use_cups%': 1, 1208 'use_cups%': 1,
1208 }, { 1209 }, {
1209 'use_cups%': 0, 1210 'use_cups%': 0,
1210 }], 1211 }],
1211 1212
1212 # Native Client glibc toolchain is enabled by default except on arm. 1213 # Native Client glibc toolchain is enabled by default except on arm.
1213 ['target_arch=="arm"', { 1214 ['target_arch=="arm"', {
1214 'disable_glibc%': 1, 1215 'disable_glibc%': 1,
1215 }, { 1216 }, {
1216 'disable_glibc%': 0, 1217 'disable_glibc%': 0,
(...skipping 2456 matching lines...) Expand 10 before | Expand all | Expand 10 after
3673 # settings in target dicts. SYMROOT is a special case, because many other 3674 # settings in target dicts. SYMROOT is a special case, because many other
3674 # Xcode variables depend on it, including variables such as 3675 # Xcode variables depend on it, including variables such as
3675 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3676 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3676 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3677 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3677 # files to appear (when present) in the UI as actual files and not red 3678 # files to appear (when present) in the UI as actual files and not red
3678 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3679 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3679 # and therefore SYMROOT, needs to be set at the project level. 3680 # and therefore SYMROOT, needs to be set at the project level.
3680 'SYMROOT': '<(DEPTH)/xcodebuild', 3681 'SYMROOT': '<(DEPTH)/xcodebuild',
3681 }, 3682 },
3682 } 3683 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | chrome/chrome_browser_ui.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698