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

Side by Side Diff: build/common.gypi

Issue 10824105: Refer to build/mac/find_sdk.py in a more robust way. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | no next file » | 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 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 1021
1022 ['branding=="Chrome" and buildtype=="Official"', { 1022 ['branding=="Chrome" and buildtype=="Official"', {
1023 'mac_sdk%': '10.6', 1023 'mac_sdk%': '10.6',
1024 # Enable uploading crash dumps. 1024 # Enable uploading crash dumps.
1025 'mac_breakpad_uploads%': 1, 1025 'mac_breakpad_uploads%': 1,
1026 # Enable dumping symbols at build time for use by Mac Breakpad. 1026 # Enable dumping symbols at build time for use by Mac Breakpad.
1027 'mac_breakpad%': 1, 1027 'mac_breakpad%': 1,
1028 # Enable Keystone auto-update support. 1028 # Enable Keystone auto-update support.
1029 'mac_keystone%': 1, 1029 'mac_keystone%': 1,
1030 }, { # else: branding!="Chrome" or buildtype!="Official" 1030 }, { # else: branding!="Chrome" or buildtype!="Official"
1031 'mac_sdk%': '<!(python mac/find_sdk.py 10.6)', 1031 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)',
1032 'mac_breakpad_uploads%': 0, 1032 'mac_breakpad_uploads%': 0,
1033 'mac_breakpad%': 0, 1033 'mac_breakpad%': 0,
1034 'mac_keystone%': 0, 1034 'mac_keystone%': 0,
1035 }], 1035 }],
1036 ], 1036 ],
1037 }], # OS=="mac" 1037 }], # OS=="mac"
1038 1038
1039 ['OS=="win"', { 1039 ['OS=="win"', {
1040 'conditions': [ 1040 'conditions': [
1041 ['component=="shared_library"', { 1041 ['component=="shared_library"', {
(...skipping 2291 matching lines...) Expand 10 before | Expand all | Expand 10 after
3333 # settings in target dicts. SYMROOT is a special case, because many other 3333 # settings in target dicts. SYMROOT is a special case, because many other
3334 # Xcode variables depend on it, including variables such as 3334 # Xcode variables depend on it, including variables such as
3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3337 # files to appear (when present) in the UI as actual files and not red 3337 # files to appear (when present) in the UI as actual files and not red
3338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3339 # and therefore SYMROOT, needs to be set at the project level. 3339 # and therefore SYMROOT, needs to be set at the project level.
3340 'SYMROOT': '<(DEPTH)/xcodebuild', 3340 'SYMROOT': '<(DEPTH)/xcodebuild',
3341 }, 3341 },
3342 } 3342 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698