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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 }, { | 831 }, { |
832 'v8_optimized_debug%': 2, | 832 'v8_optimized_debug%': 2, |
833 }], | 833 }], |
834 | 834 |
835 # Disable various features by default on embedded. | 835 # Disable various features by default on embedded. |
836 ['embedded==1', { | 836 ['embedded==1', { |
837 'remoting%': 0, | 837 'remoting%': 0, |
838 'enable_printing%': 0, | 838 'enable_printing%': 0, |
839 }], | 839 }], |
840 | 840 |
841 ['OS=="win"', { | 841 ['OS=="win" or (OS=="linux" and chromeos==0)', { |
842 'use_mojo%': 1, | 842 'use_mojo%': 1, |
843 }], | 843 }], |
844 ], | 844 ], |
845 | 845 |
846 # Set this to 1 to enable use of concatenated impulse responses | 846 # Set this to 1 to enable use of concatenated impulse responses |
847 # for the HRTF panner in WebAudio. | 847 # for the HRTF panner in WebAudio. |
848 'use_concatenated_impulse_responses': 1, | 848 'use_concatenated_impulse_responses': 1, |
849 | 849 |
850 # You can set the variable 'use_official_google_api_keys' to 1 | 850 # You can set the variable 'use_official_google_api_keys' to 1 |
851 # to use the Google-internal file containing official API keys | 851 # to use the Google-internal file containing official API keys |
(...skipping 4259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5111 # settings in target dicts. SYMROOT is a special case, because many other | 5111 # settings in target dicts. SYMROOT is a special case, because many other |
5112 # Xcode variables depend on it, including variables such as | 5112 # Xcode variables depend on it, including variables such as |
5113 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5113 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5114 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5114 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5115 # files to appear (when present) in the UI as actual files and not red | 5115 # files to appear (when present) in the UI as actual files and not red |
5116 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5116 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5117 # and therefore SYMROOT, needs to be set at the project level. | 5117 # and therefore SYMROOT, needs to be set at the project level. |
5118 'SYMROOT': '<(DEPTH)/xcodebuild', | 5118 'SYMROOT': '<(DEPTH)/xcodebuild', |
5119 }, | 5119 }, |
5120 } | 5120 } |
OLD | NEW |