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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 }], | 840 }], |
841 | 841 |
842 # By default, use ICU data file (icudtl.dat) on all platforms | 842 # By default, use ICU data file (icudtl.dat) on all platforms |
843 # except when building Android WebView. | 843 # except when building Android WebView. |
844 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). | 844 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). |
845 ['android_webview_build==0', { | 845 ['android_webview_build==0', { |
846 'icu_use_data_file_flag%' : 1, | 846 'icu_use_data_file_flag%' : 1, |
847 }, { | 847 }, { |
848 'icu_use_data_file_flag%' : 0, | 848 'icu_use_data_file_flag%' : 0, |
849 }], | 849 }], |
| 850 |
| 851 ['OS=="linux"', { |
| 852 'use_mojo%': 1, |
| 853 }], |
850 ], | 854 ], |
851 | 855 |
852 # Set this to 1 to enable use of concatenated impulse responses | 856 # Set this to 1 to enable use of concatenated impulse responses |
853 # for the HRTF panner in WebAudio. | 857 # for the HRTF panner in WebAudio. |
854 'use_concatenated_impulse_responses': 1, | 858 'use_concatenated_impulse_responses': 1, |
855 | 859 |
856 # You can set the variable 'use_official_google_api_keys' to 1 | 860 # You can set the variable 'use_official_google_api_keys' to 1 |
857 # to use the Google-internal file containing official API keys | 861 # to use the Google-internal file containing official API keys |
858 # for Google Chrome even in a developer build. Setting this | 862 # for Google Chrome even in a developer build. Setting this |
859 # variable explicitly to 1 will cause your build to fail if the | 863 # variable explicitly to 1 will cause your build to fail if the |
(...skipping 4263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5123 # settings in target dicts. SYMROOT is a special case, because many other | 5127 # settings in target dicts. SYMROOT is a special case, because many other |
5124 # Xcode variables depend on it, including variables such as | 5128 # Xcode variables depend on it, including variables such as |
5125 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5129 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5126 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5130 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5127 # files to appear (when present) in the UI as actual files and not red | 5131 # files to appear (when present) in the UI as actual files and not red |
5128 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5132 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5129 # and therefore SYMROOT, needs to be set at the project level. | 5133 # and therefore SYMROOT, needs to be set at the project level. |
5130 'SYMROOT': '<(DEPTH)/xcodebuild', | 5134 'SYMROOT': '<(DEPTH)/xcodebuild', |
5131 }, | 5135 }, |
5132 } | 5136 } |
OLD | NEW |