| 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 2857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2868 'defines': ['CLD_VERSION=<(cld_version)'], | 2868 'defines': ['CLD_VERSION=<(cld_version)'], |
| 2869 }], | 2869 }], |
| 2870 ['cld_version==2', { | 2870 ['cld_version==2', { |
| 2871 # This is used to populate the "CLD Data Source" field in: | 2871 # This is used to populate the "CLD Data Source" field in: |
| 2872 # chrome://translate-internals | 2872 # chrome://translate-internals |
| 2873 'defines': ['CLD2_DATA_SOURCE=<(cld2_data_source)'], | 2873 'defines': ['CLD2_DATA_SOURCE=<(cld2_data_source)'], |
| 2874 }], | 2874 }], |
| 2875 ['enable_printing==1', { | 2875 ['enable_printing==1', { |
| 2876 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'], | 2876 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'], |
| 2877 }], | 2877 }], |
| 2878 ['enable_printing==1 and OS=="win"', { | |
| 2879 'defines': ['DISABLE_BASIC_PRINTING=1'], | |
| 2880 }], | |
| 2881 ['enable_printing==2', { | 2878 ['enable_printing==2', { |
| 2882 'defines': ['ENABLE_PRINTING=1'], | 2879 'defines': ['ENABLE_PRINTING=1'], |
| 2883 }], | 2880 }], |
| 2884 ['enable_spellcheck==1', { | 2881 ['enable_spellcheck==1', { |
| 2885 'defines': ['ENABLE_SPELLCHECK=1'], | 2882 'defines': ['ENABLE_SPELLCHECK=1'], |
| 2886 }], | 2883 }], |
| 2887 ['enable_captive_portal_detection==1', { | 2884 ['enable_captive_portal_detection==1', { |
| 2888 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], | 2885 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], |
| 2889 }], | 2886 }], |
| 2890 ['enable_app_list==1', { | 2887 ['enable_app_list==1', { |
| (...skipping 2883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5774 # settings in target dicts. SYMROOT is a special case, because many other | 5771 # settings in target dicts. SYMROOT is a special case, because many other |
| 5775 # Xcode variables depend on it, including variables such as | 5772 # Xcode variables depend on it, including variables such as |
| 5776 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5773 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5777 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5774 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5778 # files to appear (when present) in the UI as actual files and not red | 5775 # files to appear (when present) in the UI as actual files and not red |
| 5779 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5776 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5780 # and therefore SYMROOT, needs to be set at the project level. | 5777 # and therefore SYMROOT, needs to be set at the project level. |
| 5781 'SYMROOT': '<(DEPTH)/xcodebuild', | 5778 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5782 }, | 5779 }, |
| 5783 } | 5780 } |
| OLD | NEW |