| 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 2431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2442 # to contain whatever value it has during early variable expansion. | 2442 # to contain whatever value it has during early variable expansion. |
| 2443 # That's enough to make it available during target conditional | 2443 # That's enough to make it available during target conditional |
| 2444 # processing. | 2444 # processing. |
| 2445 'chromium_code%': '<(chromium_code)', | 2445 'chromium_code%': '<(chromium_code)', |
| 2446 | 2446 |
| 2447 'component%': '<(component)', | 2447 'component%': '<(component)', |
| 2448 | 2448 |
| 2449 'chromecast%': '<(chromecast)', | 2449 'chromecast%': '<(chromecast)', |
| 2450 | 2450 |
| 2451 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx | 2451 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx |
| 2452 'win_release_Optimization%': '2', # 2 = /Os | 2452 'win_release_Optimization%': '2', # 2 = /O2 |
| 2453 'win_debug_Optimization%': '0', # 0 = /Od | 2453 'win_debug_Optimization%': '0', # 0 = /Od |
| 2454 | 2454 |
| 2455 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx | 2455 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx |
| 2456 # Tri-state: blank is default, 1 on, 0 off | 2456 # Tri-state: blank is default, 1 on, 0 off |
| 2457 'win_release_OmitFramePointers%': '0', | 2457 'win_release_OmitFramePointers%': '0', |
| 2458 # Tri-state: blank is default, 1 on, 0 off | 2458 # Tri-state: blank is default, 1 on, 0 off |
| 2459 'win_debug_OmitFramePointers%': '', | 2459 'win_debug_OmitFramePointers%': '', |
| 2460 | 2460 |
| 2461 # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx | 2461 # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx |
| 2462 'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off | 2462 'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off |
| (...skipping 3547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6010 # settings in target dicts. SYMROOT is a special case, because many other | 6010 # settings in target dicts. SYMROOT is a special case, because many other |
| 6011 # Xcode variables depend on it, including variables such as | 6011 # Xcode variables depend on it, including variables such as |
| 6012 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6012 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6013 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6013 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6014 # files to appear (when present) in the UI as actual files and not red | 6014 # files to appear (when present) in the UI as actual files and not red |
| 6015 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6015 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6016 # and therefore SYMROOT, needs to be set at the project level. | 6016 # and therefore SYMROOT, needs to be set at the project level. |
| 6017 'SYMROOT': '<(DEPTH)/xcodebuild', | 6017 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6018 }, | 6018 }, |
| 6019 } | 6019 } |
| OLD | NEW |