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

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/tweak comments 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') | no next file with comments »
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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 # All Chrome builds have breakpad symbols, but only process the 952 # All Chrome builds have breakpad symbols, but only process the
953 # symbols from official builds. 953 # symbols from official builds.
954 ['(branding=="Chrome" and buildtype=="Official")', { 954 ['(branding=="Chrome" and buildtype=="Official")', {
955 'linux_dump_symbols%': 1, 955 'linux_dump_symbols%': 1,
956 }], 956 }],
957 ], 957 ],
958 }], # os_posix==1 and OS!="mac" and OS!="ios" 958 }], # os_posix==1 and OS!="mac" and OS!="ios"
959 ['OS=="ios"', { 959 ['OS=="ios"', {
960 'disable_nacl%': 1, 960 'disable_nacl%': 1,
961 'enable_gpu%': 0, 961 'enable_gpu%': 0,
962 'enable_task_manager%': 0,
962 'icu_use_data_file_flag%': 1, 963 'icu_use_data_file_flag%': 1,
963 'use_system_bzip2%': 1, 964 'use_system_bzip2%': 1,
964 'use_system_libxml%': 1, 965 'use_system_libxml%': 1,
965 'use_system_sqlite%': 1, 966 'use_system_sqlite%': 1,
966 967
967 # The Mac SDK is set for iOS builds and passed through to Mac 968 # The Mac SDK is set for iOS builds and passed through to Mac
968 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be 969 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be
969 # overridden from the command line the same way it is for a Mac build. 970 # overridden from the command line the same way it is for a Mac build.
970 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)', 971 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)',
971 972
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1195 'secure_atl%': 1, 1196 'secure_atl%': 1,
1196 }], 1197 }],
1197 ], 1198 ],
1198 'nacl_win64_defines': [ 1199 'nacl_win64_defines': [
1199 # This flag is used to minimize dependencies when building 1200 # This flag is used to minimize dependencies when building
1200 # Native Client loader for 64-bit Windows. 1201 # Native Client loader for 64-bit Windows.
1201 'NACL_WIN64', 1202 'NACL_WIN64',
1202 ], 1203 ],
1203 }], 1204 }],
1204 1205
1205 ['os_posix==1 and chromeos==0 and OS!="android"', { 1206 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', {
1206 'use_cups%': 1, 1207 'use_cups%': 1,
1207 }, { 1208 }, {
1208 'use_cups%': 0, 1209 'use_cups%': 0,
1209 }], 1210 }],
1210 1211
1211 # Native Client glibc toolchain is enabled by default except on arm. 1212 # Native Client glibc toolchain is enabled by default except on arm.
1212 ['target_arch=="arm"', { 1213 ['target_arch=="arm"', {
1213 'disable_glibc%': 1, 1214 'disable_glibc%': 1,
1214 }, { 1215 }, {
1215 'disable_glibc%': 0, 1216 'disable_glibc%': 0,
(...skipping 2455 matching lines...) Expand 10 before | Expand all | Expand 10 after
3671 # settings in target dicts. SYMROOT is a special case, because many other 3672 # settings in target dicts. SYMROOT is a special case, because many other
3672 # Xcode variables depend on it, including variables such as 3673 # Xcode variables depend on it, including variables such as
3673 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3674 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3674 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3675 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3675 # files to appear (when present) in the UI as actual files and not red 3676 # files to appear (when present) in the UI as actual files and not red
3676 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3677 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3677 # and therefore SYMROOT, needs to be set at the project level. 3678 # and therefore SYMROOT, needs to be set at the project level.
3678 'SYMROOT': '<(DEPTH)/xcodebuild', 3679 'SYMROOT': '<(DEPTH)/xcodebuild',
3679 }, 3680 },
3680 } 3681 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698