| 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 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 }], | 1358 }], |
| 1359 ['enable_printing==1', { | 1359 ['enable_printing==1', { |
| 1360 'grit_defines': ['-D', 'enable_printing'], | 1360 'grit_defines': ['-D', 'enable_printing'], |
| 1361 }], | 1361 }], |
| 1362 ['enable_themes==1', { | 1362 ['enable_themes==1', { |
| 1363 'grit_defines': ['-D', 'enable_themes'], | 1363 'grit_defines': ['-D', 'enable_themes'], |
| 1364 }], | 1364 }], |
| 1365 ['use_oem_wallpaper==1', { | 1365 ['use_oem_wallpaper==1', { |
| 1366 'grit_defines': ['-D', 'use_oem_wallpaper'], | 1366 'grit_defines': ['-D', 'use_oem_wallpaper'], |
| 1367 }], | 1367 }], |
| 1368 ['enable_app_list==1', { |
| 1369 'grit_defines': ['-D', 'enable_app_list'], |
| 1370 }], |
| 1368 ['enable_settings_app==1', { | 1371 ['enable_settings_app==1', { |
| 1369 'grit_defines': ['-D', 'enable_settings_app'], | 1372 'grit_defines': ['-D', 'enable_settings_app'], |
| 1370 }], | 1373 }], |
| 1371 ['clang_use_chrome_plugins==1 and OS!="win"', { | 1374 ['clang_use_chrome_plugins==1 and OS!="win"', { |
| 1372 'clang_chrome_plugins_flags': [ | 1375 'clang_chrome_plugins_flags': [ |
| 1373 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' | 1376 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' |
| 1374 ], | 1377 ], |
| 1375 }], | 1378 }], |
| 1376 | 1379 |
| 1377 ['enable_web_intents_tag==1', { | 1380 ['enable_web_intents_tag==1', { |
| (...skipping 2542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3920 # settings in target dicts. SYMROOT is a special case, because many other | 3923 # settings in target dicts. SYMROOT is a special case, because many other |
| 3921 # Xcode variables depend on it, including variables such as | 3924 # Xcode variables depend on it, including variables such as |
| 3922 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3925 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3923 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3926 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3924 # files to appear (when present) in the UI as actual files and not red | 3927 # files to appear (when present) in the UI as actual files and not red |
| 3925 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3928 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3926 # and therefore SYMROOT, needs to be set at the project level. | 3929 # and therefore SYMROOT, needs to be set at the project level. |
| 3927 'SYMROOT': '<(DEPTH)/xcodebuild', | 3930 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3928 }, | 3931 }, |
| 3929 } | 3932 } |
| OLD | NEW |