Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 836 ['enable_register_protocol_handler==1', { | 836 ['enable_register_protocol_handler==1', { |
| 837 'grit_defines': ['-D', 'enable_register_protocol_handler'], | 837 'grit_defines': ['-D', 'enable_register_protocol_handler'], |
| 838 }], | 838 }], |
| 839 | 839 |
| 840 ['enable_web_intents==1', { | 840 ['enable_web_intents==1', { |
| 841 'grit_defines': ['-D', 'enable_web_intents'], | 841 'grit_defines': ['-D', 'enable_web_intents'], |
| 842 }], | 842 }], |
| 843 | 843 |
| 844 ['asan==1', { | 844 ['asan==1', { |
| 845 'clang%': 1, | 845 'clang%': 1, |
| 846 'clang_use_chrome_plugins%': 0, | |
|
Nico
2011/10/12 15:42:56
add a comment why
| |
| 846 }], | 847 }], |
| 847 ], | 848 ], |
| 848 # List of default apps to install in new profiles. The first list contains | 849 # List of default apps to install in new profiles. The first list contains |
| 849 # the source files as found in svn. The second list, used only for linux, | 850 # the source files as found in svn. The second list, used only for linux, |
| 850 # contains the destination location for each of the files. | 851 # contains the destination location for each of the files. |
| 851 'default_apps_list': [ | 852 'default_apps_list': [ |
| 852 'browser/resources/default_apps/external_extensions.json', | 853 'browser/resources/default_apps/external_extensions.json', |
| 853 'browser/resources/default_apps/gmail.crx', | 854 'browser/resources/default_apps/gmail.crx', |
| 854 'browser/resources/default_apps/youtube.crx', | 855 'browser/resources/default_apps/youtube.crx', |
| 855 ], | 856 ], |
| (...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2520 # settings in target dicts. SYMROOT is a special case, because many other | 2521 # settings in target dicts. SYMROOT is a special case, because many other |
| 2521 # Xcode variables depend on it, including variables such as | 2522 # Xcode variables depend on it, including variables such as |
| 2522 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2523 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2523 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2524 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2524 # files to appear (when present) in the UI as actual files and not red | 2525 # files to appear (when present) in the UI as actual files and not red |
| 2525 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2526 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2526 # and therefore SYMROOT, needs to be set at the project level. | 2527 # and therefore SYMROOT, needs to be set at the project level. |
| 2527 'SYMROOT': '<(DEPTH)/xcodebuild', | 2528 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2528 }, | 2529 }, |
| 2529 } | 2530 } |
| OLD | NEW |