| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 # Enable HiDPI on Mac OS and Chrome OS. | 128 # Enable HiDPI on Mac OS and Chrome OS. |
| 129 ['OS=="mac" or chromeos==1', { | 129 ['OS=="mac" or chromeos==1', { |
| 130 'enable_hidpi%': 1, | 130 'enable_hidpi%': 1, |
| 131 }], | 131 }], |
| 132 | 132 |
| 133 # Enable touch UI on Metro. | 133 # Enable touch UI on Metro. |
| 134 ['OS=="win"', { | 134 ['OS=="win"', { |
| 135 'enable_touch_ui%': 1, | 135 'enable_touch_ui%': 1, |
| 136 }], | 136 }], |
| 137 | 137 |
| 138 # Enable App Launcher & Message Center only on ChromeOS and Windows | 138 # Enable App Launcher only on ChromeOS, Windows and OSX. |
| 139 # for now. | 139 ['use_ash==1 or OS=="win" or OS=="mac"', { |
| 140 'enable_app_list%': 1, |
| 141 }, { |
| 142 'enable_app_list%': 0, |
| 143 }], |
| 144 |
| 145 # Enable Message Center only on ChromeOS and Windows for now. |
| 140 ['use_ash==1 or OS=="win"', { | 146 ['use_ash==1 or OS=="win"', { |
| 141 'enable_app_list%': 1, | |
| 142 'enable_message_center%': 1, | 147 'enable_message_center%': 1, |
| 143 }, { | 148 }, { |
| 144 'enable_app_list%': 0, | |
| 145 'enable_message_center%': 0, | 149 'enable_message_center%': 0, |
| 146 }], | 150 }], |
| 147 | 151 |
| 148 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro
id")', { | 152 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="andro
id")', { |
| 149 'use_default_render_theme%': 1, | 153 'use_default_render_theme%': 1, |
| 150 }, { | 154 }, { |
| 151 'use_default_render_theme%': 0, | 155 'use_default_render_theme%': 0, |
| 152 }], | 156 }], |
| 153 ], | 157 ], |
| 154 }, | 158 }, |
| (...skipping 3802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3957 # settings in target dicts. SYMROOT is a special case, because many other | 3961 # settings in target dicts. SYMROOT is a special case, because many other |
| 3958 # Xcode variables depend on it, including variables such as | 3962 # Xcode variables depend on it, including variables such as |
| 3959 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3963 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3960 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3964 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3961 # files to appear (when present) in the UI as actual files and not red | 3965 # files to appear (when present) in the UI as actual files and not red |
| 3962 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3966 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3963 # and therefore SYMROOT, needs to be set at the project level. | 3967 # and therefore SYMROOT, needs to be set at the project level. |
| 3964 'SYMROOT': '<(DEPTH)/xcodebuild', | 3968 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3965 }, | 3969 }, |
| 3966 } | 3970 } |
| OLD | NEW |