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 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 }], | 829 }], |
830 | 830 |
831 # By default, use ICU data file (icudtl.dat) on all platforms | 831 # By default, use ICU data file (icudtl.dat) on all platforms |
832 # except when building Android WebView. | 832 # except when building Android WebView. |
833 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). | 833 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). |
834 ['android_webview_build==0', { | 834 ['android_webview_build==0', { |
835 'icu_use_data_file_flag%' : 1, | 835 'icu_use_data_file_flag%' : 1, |
836 }, { | 836 }, { |
837 'icu_use_data_file_flag%' : 0, | 837 'icu_use_data_file_flag%' : 0, |
838 }], | 838 }], |
| 839 |
| 840 ['OS=="win"', { |
| 841 'use_mojo%': 1, |
| 842 }], |
839 ], | 843 ], |
840 | 844 |
841 # Set this to 1 to enable use of concatenated impulse responses | 845 # Set this to 1 to enable use of concatenated impulse responses |
842 # for the HRTF panner in WebAudio. | 846 # for the HRTF panner in WebAudio. |
843 'use_concatenated_impulse_responses': 1, | 847 'use_concatenated_impulse_responses': 1, |
844 | 848 |
845 # You can set the variable 'use_official_google_api_keys' to 1 | 849 # You can set the variable 'use_official_google_api_keys' to 1 |
846 # to use the Google-internal file containing official API keys | 850 # to use the Google-internal file containing official API keys |
847 # for Google Chrome even in a developer build. Setting this | 851 # for Google Chrome even in a developer build. Setting this |
848 # variable explicitly to 1 will cause your build to fail if the | 852 # variable explicitly to 1 will cause your build to fail if the |
(...skipping 4254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5103 # settings in target dicts. SYMROOT is a special case, because many other | 5107 # settings in target dicts. SYMROOT is a special case, because many other |
5104 # Xcode variables depend on it, including variables such as | 5108 # Xcode variables depend on it, including variables such as |
5105 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5109 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5106 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5110 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5107 # files to appear (when present) in the UI as actual files and not red | 5111 # files to appear (when present) in the UI as actual files and not red |
5108 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5112 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5109 # and therefore SYMROOT, needs to be set at the project level. | 5113 # and therefore SYMROOT, needs to be set at the project level. |
5110 'SYMROOT': '<(DEPTH)/xcodebuild', | 5114 'SYMROOT': '<(DEPTH)/xcodebuild', |
5111 }, | 5115 }, |
5112 } | 5116 } |
OLD | NEW |