| 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 2032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2043 ], | 2043 ], |
| 2044 'configurations': { | 2044 'configurations': { |
| 2045 'Debug_Base': { | 2045 'Debug_Base': { |
| 2046 'variables': { | 2046 'variables': { |
| 2047 'debug_optimize%': '0', | 2047 'debug_optimize%': '0', |
| 2048 }, | 2048 }, |
| 2049 'defines': [ | 2049 'defines': [ |
| 2050 '_DEBUG', | 2050 '_DEBUG', |
| 2051 ], | 2051 ], |
| 2052 'cflags': [ | 2052 'cflags': [ |
| 2053 '-O<(debug_optimize)', | 2053 '-O>(debug_optimize)', |
| 2054 '-g', | 2054 '-g', |
| 2055 ], | 2055 ], |
| 2056 'conditions' : [ | 2056 'conditions' : [ |
| 2057 ['OS=="android" and android_full_debug==0', { | 2057 ['OS=="android" and android_full_debug==0', { |
| 2058 # Some configurations are copied from Release_Base to reduce | 2058 # Some configurations are copied from Release_Base to reduce |
| 2059 # the binary size. | 2059 # the binary size. |
| 2060 'variables': { | 2060 'variables': { |
| 2061 'debug_optimize%': 's', | 2061 'debug_optimize%': 's', |
| 2062 }, | 2062 }, |
| 2063 'cflags': [ | 2063 'cflags': [ |
| (...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3403 # settings in target dicts. SYMROOT is a special case, because many other | 3403 # settings in target dicts. SYMROOT is a special case, because many other |
| 3404 # Xcode variables depend on it, including variables such as | 3404 # Xcode variables depend on it, including variables such as |
| 3405 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3405 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3406 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3406 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3407 # files to appear (when present) in the UI as actual files and not red | 3407 # files to appear (when present) in the UI as actual files and not red |
| 3408 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3408 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3409 # and therefore SYMROOT, needs to be set at the project level. | 3409 # and therefore SYMROOT, needs to be set at the project level. |
| 3410 'SYMROOT': '<(DEPTH)/xcodebuild', | 3410 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3411 }, | 3411 }, |
| 3412 } | 3412 } |
| OLD | NEW |