| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |