| 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 2861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2872 'defines': ['CLD_VERSION=<(cld_version)'], | 2872 'defines': ['CLD_VERSION=<(cld_version)'], |
| 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"', { |
| 2883 'defines': ['DISABLE_BASIC_PRINTING=1'], |
| 2884 }], |
| 2882 ['enable_printing==2', { | 2885 ['enable_printing==2', { |
| 2883 'defines': ['ENABLE_PRINTING=1'], | 2886 'defines': ['ENABLE_PRINTING=1'], |
| 2884 }], | 2887 }], |
| 2885 ['enable_spellcheck==1', { | 2888 ['enable_spellcheck==1', { |
| 2886 'defines': ['ENABLE_SPELLCHECK=1'], | 2889 'defines': ['ENABLE_SPELLCHECK=1'], |
| 2887 }], | 2890 }], |
| 2888 ['enable_captive_portal_detection==1', { | 2891 ['enable_captive_portal_detection==1', { |
| 2889 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], | 2892 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], |
| 2890 }], | 2893 }], |
| 2891 ['enable_app_list==1', { | 2894 ['enable_app_list==1', { |
| (...skipping 2888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5780 # 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 |
| 5781 # Xcode variables depend on it, including variables such as | 5784 # Xcode variables depend on it, including variables such as |
| 5782 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5785 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5783 # 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 |
| 5784 # 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 |
| 5785 # 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, |
| 5786 # and therefore SYMROOT, needs to be set at the project level. | 5789 # and therefore SYMROOT, needs to be set at the project level. |
| 5787 'SYMROOT': '<(DEPTH)/xcodebuild', | 5790 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5788 }, | 5791 }, |
| 5789 } | 5792 } |
| OLD | NEW |