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 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1731 ['enable_extensions==1', { | 1731 ['enable_extensions==1', { |
1732 'grit_defines': ['-D', 'enable_extensions'], | 1732 'grit_defines': ['-D', 'enable_extensions'], |
1733 }], | 1733 }], |
1734 ['enable_plugins!=0', { | 1734 ['enable_plugins!=0', { |
1735 | 1735 |
1736 'grit_defines': ['-D', 'enable_plugins'], | 1736 'grit_defines': ['-D', 'enable_plugins'], |
1737 }], | 1737 }], |
1738 ['enable_printing!=0', { | 1738 ['enable_printing!=0', { |
1739 'grit_defines': ['-D', 'enable_printing'], | 1739 'grit_defines': ['-D', 'enable_printing'], |
1740 }], | 1740 }], |
| 1741 ['enable_printing==1', { |
| 1742 'grit_defines': ['-D', 'enable_full_printing'], |
| 1743 }], |
1741 ['enable_themes==1', { | 1744 ['enable_themes==1', { |
1742 'grit_defines': ['-D', 'enable_themes'], | 1745 'grit_defines': ['-D', 'enable_themes'], |
1743 }], | 1746 }], |
1744 ['enable_app_list==1', { | 1747 ['enable_app_list==1', { |
1745 'grit_defines': ['-D', 'enable_app_list'], | 1748 'grit_defines': ['-D', 'enable_app_list'], |
1746 }], | 1749 }], |
1747 ['enable_settings_app==1', { | 1750 ['enable_settings_app==1', { |
1748 'grit_defines': ['-D', 'enable_settings_app'], | 1751 'grit_defines': ['-D', 'enable_settings_app'], |
1749 }], | 1752 }], |
1750 ['enable_google_now==1', { | 1753 ['enable_google_now==1', { |
(...skipping 3126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4877 # settings in target dicts. SYMROOT is a special case, because many other | 4880 # settings in target dicts. SYMROOT is a special case, because many other |
4878 # Xcode variables depend on it, including variables such as | 4881 # Xcode variables depend on it, including variables such as |
4879 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4882 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4880 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4883 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4881 # files to appear (when present) in the UI as actual files and not red | 4884 # files to appear (when present) in the UI as actual files and not red |
4882 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4885 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4883 # and therefore SYMROOT, needs to be set at the project level. | 4886 # and therefore SYMROOT, needs to be set at the project level. |
4884 'SYMROOT': '<(DEPTH)/xcodebuild', | 4887 'SYMROOT': '<(DEPTH)/xcodebuild', |
4885 }, | 4888 }, |
4886 } | 4889 } |
OLD | NEW |