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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1682 'conditions': [ | 1682 'conditions': [ |
1683 ['"<(GENERATOR)"=="ninja"', { | 1683 ['"<(GENERATOR)"=="ninja"', { |
1684 'clang%': 1, | 1684 'clang%': 1, |
1685 'host_os%': "mac", | 1685 'host_os%': "mac", |
1686 }] | 1686 }] |
1687 ], | 1687 ], |
1688 }], | 1688 }], |
1689 ['enable_extensions==1', { | 1689 ['enable_extensions==1', { |
1690 'grit_defines': ['-D', 'enable_extensions'], | 1690 'grit_defines': ['-D', 'enable_extensions'], |
1691 }], | 1691 }], |
| 1692 ['enable_plugins!=0', { |
| 1693 |
| 1694 'grit_defines': ['-D', 'enable_plugins'], |
| 1695 }], |
1692 ['enable_printing!=0', { | 1696 ['enable_printing!=0', { |
1693 'grit_defines': ['-D', 'enable_printing'], | 1697 'grit_defines': ['-D', 'enable_printing'], |
1694 }], | 1698 }], |
1695 ['enable_themes==1', { | 1699 ['enable_themes==1', { |
1696 'grit_defines': ['-D', 'enable_themes'], | 1700 'grit_defines': ['-D', 'enable_themes'], |
1697 }], | 1701 }], |
1698 ['enable_app_list==1', { | 1702 ['enable_app_list==1', { |
1699 'grit_defines': ['-D', 'enable_app_list'], | 1703 'grit_defines': ['-D', 'enable_app_list'], |
1700 }], | 1704 }], |
1701 ['enable_settings_app==1', { | 1705 ['enable_settings_app==1', { |
(...skipping 3040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4742 # settings in target dicts. SYMROOT is a special case, because many other | 4746 # settings in target dicts. SYMROOT is a special case, because many other |
4743 # Xcode variables depend on it, including variables such as | 4747 # Xcode variables depend on it, including variables such as |
4744 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4748 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4745 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4749 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4746 # files to appear (when present) in the UI as actual files and not red | 4750 # files to appear (when present) in the UI as actual files and not red |
4747 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4751 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4748 # and therefore SYMROOT, needs to be set at the project level. | 4752 # and therefore SYMROOT, needs to be set at the project level. |
4749 'SYMROOT': '<(DEPTH)/xcodebuild', | 4753 'SYMROOT': '<(DEPTH)/xcodebuild', |
4750 }, | 4754 }, |
4751 } | 4755 } |
OLD | NEW |