| 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 2038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2049 }], | 2049 }], |
| 2050 ['use_aura==1', { | 2050 ['use_aura==1', { |
| 2051 'defines': ['USE_AURA=1'], | 2051 'defines': ['USE_AURA=1'], |
| 2052 }], | 2052 }], |
| 2053 ['use_ash==1', { | 2053 ['use_ash==1', { |
| 2054 'defines': ['USE_ASH=1'], | 2054 'defines': ['USE_ASH=1'], |
| 2055 }], | 2055 }], |
| 2056 ['use_cras==1', { | 2056 ['use_cras==1', { |
| 2057 'defines': ['USE_CRAS=1'], | 2057 'defines': ['USE_CRAS=1'], |
| 2058 }], | 2058 }], |
| 2059 ['use_glib==1', { |
| 2060 'defines': ['USE_GLIB=1'], |
| 2061 }], |
| 2059 ['use_ozone==1', { | 2062 ['use_ozone==1', { |
| 2060 'defines': ['USE_OZONE=1'], | 2063 'defines': ['USE_OZONE=1'], |
| 2061 }], | 2064 }], |
| 2062 ['use_default_render_theme==1', { | 2065 ['use_default_render_theme==1', { |
| 2063 'defines': ['USE_DEFAULT_RENDER_THEME=1'], | 2066 'defines': ['USE_DEFAULT_RENDER_THEME=1'], |
| 2064 }], | 2067 }], |
| 2065 ['use_libjpeg_turbo==1', { | 2068 ['use_libjpeg_turbo==1', { |
| 2066 'defines': ['USE_LIBJPEG_TURBO=1'], | 2069 'defines': ['USE_LIBJPEG_TURBO=1'], |
| 2067 }], | 2070 }], |
| 2068 ['use_nss==1', { | 2071 ['use_nss==1', { |
| (...skipping 2653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4722 # settings in target dicts. SYMROOT is a special case, because many other | 4725 # settings in target dicts. SYMROOT is a special case, because many other |
| 4723 # Xcode variables depend on it, including variables such as | 4726 # Xcode variables depend on it, including variables such as |
| 4724 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4727 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4725 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4728 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4726 # files to appear (when present) in the UI as actual files and not red | 4729 # files to appear (when present) in the UI as actual files and not red |
| 4727 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4730 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4728 # and therefore SYMROOT, needs to be set at the project level. | 4731 # and therefore SYMROOT, needs to be set at the project level. |
| 4729 'SYMROOT': '<(DEPTH)/xcodebuild', | 4732 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4730 }, | 4733 }, |
| 4731 } | 4734 } |
| OLD | NEW |