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

Side by Side Diff: build/common.gypi

Issue 10876003: mac: Print an error when doing a branded build and the 10.6 sdk is not around (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: doh Created 8 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/mac/find_sdk.py » ('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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 # chrome/app/theme/chromium/BRANDING and 1027 # chrome/app/theme/chromium/BRANDING and
1028 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get 1028 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1029 # these names into the build system. 1029 # these names into the build system.
1030 ['branding=="Chrome"', { 1030 ['branding=="Chrome"', {
1031 'mac_product_name%': 'Google Chrome', 1031 'mac_product_name%': 'Google Chrome',
1032 }, { # else: branding!="Chrome" 1032 }, { # else: branding!="Chrome"
1033 'mac_product_name%': 'Chromium', 1033 'mac_product_name%': 'Chromium',
1034 }], 1034 }],
1035 1035
1036 ['branding=="Chrome" and buildtype=="Official"', { 1036 ['branding=="Chrome" and buildtype=="Official"', {
1037 'mac_sdk%': '10.6', 1037 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify 10.6) ',
1038 # Enable uploading crash dumps. 1038 # Enable uploading crash dumps.
1039 'mac_breakpad_uploads%': 1, 1039 'mac_breakpad_uploads%': 1,
1040 # Enable dumping symbols at build time for use by Mac Breakpad. 1040 # Enable dumping symbols at build time for use by Mac Breakpad.
1041 'mac_breakpad%': 1, 1041 'mac_breakpad%': 1,
1042 # Enable Keystone auto-update support. 1042 # Enable Keystone auto-update support.
1043 'mac_keystone%': 1, 1043 'mac_keystone%': 1,
1044 }, { # else: branding!="Chrome" or buildtype!="Official" 1044 }, { # else: branding!="Chrome" or buildtype!="Official"
1045 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)', 1045 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)',
1046 'mac_breakpad_uploads%': 0, 1046 'mac_breakpad_uploads%': 0,
1047 'mac_breakpad%': 0, 1047 'mac_breakpad%': 0,
(...skipping 2342 matching lines...) Expand 10 before | Expand all | Expand 10 after
3390 # settings in target dicts. SYMROOT is a special case, because many other 3390 # settings in target dicts. SYMROOT is a special case, because many other
3391 # Xcode variables depend on it, including variables such as 3391 # Xcode variables depend on it, including variables such as
3392 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3392 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3393 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3393 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3394 # files to appear (when present) in the UI as actual files and not red 3394 # files to appear (when present) in the UI as actual files and not red
3395 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3395 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3396 # and therefore SYMROOT, needs to be set at the project level. 3396 # and therefore SYMROOT, needs to be set at the project level.
3397 'SYMROOT': '<(DEPTH)/xcodebuild', 3397 'SYMROOT': '<(DEPTH)/xcodebuild',
3398 }, 3398 },
3399 } 3399 }
OLDNEW
« no previous file with comments | « no previous file | build/mac/find_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698