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 # Do not use Chrome plugins for Clang. First, the Clang version in | |
847 # third_party/asan may be different from the default one. Second, we do | |
848 # not want additional warnings when building with ASan. | |
Nico
2011/10/12 16:37:34
The tree goes red if the style plugin warns on any
| |
849 'clang_use_chrome_plugins%': 0, | |
846 }], | 850 }], |
847 ], | 851 ], |
848 # List of default apps to install in new profiles. The first list contains | 852 # 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, | 853 # the source files as found in svn. The second list, used only for linux, |
850 # contains the destination location for each of the files. | 854 # contains the destination location for each of the files. |
851 'default_apps_list': [ | 855 'default_apps_list': [ |
852 'browser/resources/default_apps/external_extensions.json', | 856 'browser/resources/default_apps/external_extensions.json', |
853 'browser/resources/default_apps/gmail.crx', | 857 'browser/resources/default_apps/gmail.crx', |
854 'browser/resources/default_apps/youtube.crx', | 858 'browser/resources/default_apps/youtube.crx', |
855 ], | 859 ], |
(...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 | 2524 # settings in target dicts. SYMROOT is a special case, because many other |
2521 # Xcode variables depend on it, including variables such as | 2525 # Xcode variables depend on it, including variables such as |
2522 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2526 # 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 | 2527 # 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 | 2528 # 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, | 2529 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2526 # and therefore SYMROOT, needs to be set at the project level. | 2530 # and therefore SYMROOT, needs to be set at the project level. |
2527 'SYMROOT': '<(DEPTH)/xcodebuild', | 2531 'SYMROOT': '<(DEPTH)/xcodebuild', |
2528 }, | 2532 }, |
2529 } | 2533 } |
OLD | NEW |