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 2862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2873 }], | 2873 }], |
2874 ['cld_version==2', { | 2874 ['cld_version==2', { |
2875 # This is used to populate the "CLD Data Source" field in: | 2875 # This is used to populate the "CLD Data Source" field in: |
2876 # chrome://translate-internals | 2876 # chrome://translate-internals |
2877 'defines': ['CLD2_DATA_SOURCE=<(cld2_data_source)'], | 2877 'defines': ['CLD2_DATA_SOURCE=<(cld2_data_source)'], |
2878 }], | 2878 }], |
2879 ['enable_printing==1', { | 2879 ['enable_printing==1', { |
2880 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'], | 2880 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'], |
2881 }], | 2881 }], |
2882 ['enable_printing==1 and OS=="win"', { | 2882 ['enable_printing==1 and OS=="win"', { |
2883 'defines': ['DISABLE_BASIC_PRINTING=1'], | 2883 'defines': ['DISABLE_BASIC_PRINTING=1'], |
Lei Zhang
2014/09/24 17:53:42
accidental whitespace change?
Vitaly Buka (NO REVIEWS)
2014/09/24 18:07:03
We need to re-enable until we remove policy
| |
2884 }], | 2884 }], |
2885 ['enable_printing==2', { | 2885 ['enable_printing==2', { |
2886 'defines': ['ENABLE_PRINTING=1'], | 2886 'defines': ['ENABLE_PRINTING=1'], |
2887 }], | 2887 }], |
2888 ['enable_spellcheck==1', { | 2888 ['enable_spellcheck==1', { |
2889 'defines': ['ENABLE_SPELLCHECK=1'], | 2889 'defines': ['ENABLE_SPELLCHECK=1'], |
2890 }], | 2890 }], |
2891 ['enable_captive_portal_detection==1', { | 2891 ['enable_captive_portal_detection==1', { |
2892 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], | 2892 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], |
2893 }], | 2893 }], |
(...skipping 2889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5783 # settings in target dicts. SYMROOT is a special case, because many other | 5783 # settings in target dicts. SYMROOT is a special case, because many other |
5784 # Xcode variables depend on it, including variables such as | 5784 # Xcode variables depend on it, including variables such as |
5785 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5785 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5786 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5786 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5787 # files to appear (when present) in the UI as actual files and not red | 5787 # files to appear (when present) in the UI as actual files and not red |
5788 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5788 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5789 # and therefore SYMROOT, needs to be set at the project level. | 5789 # and therefore SYMROOT, needs to be set at the project level. |
5790 'SYMROOT': '<(DEPTH)/xcodebuild', | 5790 'SYMROOT': '<(DEPTH)/xcodebuild', |
5791 }, | 5791 }, |
5792 } | 5792 } |
OLD | NEW |