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 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1371 | 1371 |
1372 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 | 1372 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 |
1373 'enable_wexit_time_destructors%': 0, | 1373 'enable_wexit_time_destructors%': 0, |
1374 | 1374 |
1375 # Build libpeerconnection as a static library by default. | 1375 # Build libpeerconnection as a static library by default. |
1376 'libpeer_target_type%': 'static_library', | 1376 'libpeer_target_type%': 'static_library', |
1377 | 1377 |
1378 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. | 1378 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. |
1379 'internal_gles2_conform_tests%': 0, | 1379 'internal_gles2_conform_tests%': 0, |
1380 | 1380 |
1381 # Set to 1 to compile with the OpenGL ES 3.x conformance tests. | |
1382 'internal_khronos_conform_tests%': 0, | |
piman
2014/09/10 20:12:50
Does this and internal_gles2_conform_tests need to
U. Artie Eoff
2014/09/10 22:12:59
I think the "gles2" in the name "internal_gles2_co
Ken Russell (switch to Gerrit)
2014/09/11 00:03:26
Understood that the duplication may be necessary f
U. Artie Eoff
2014/09/11 01:09:19
Well... the idea is to target all the tests actual
Ken Russell (switch to Gerrit)
2014/09/11 01:25:17
I still think a more targeted name is appropriate.
U. Artie Eoff
2014/09/11 16:50:52
Yeah, I'd be fine using "khronos_gles_conform". O
Ken Russell (switch to Gerrit)
2014/09/11 17:40:04
Both sound fine. If khronos_glcts is closer to the
| |
1383 | |
1381 # Set to 1 to compile the filter fuzzer. | 1384 # Set to 1 to compile the filter fuzzer. |
1382 'internal_filter_fuzzer%': 0, | 1385 'internal_filter_fuzzer%': 0, |
1383 | 1386 |
1384 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' | 1387 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' |
1385 # so Cocoa is happy (http://crbug.com/20441). | 1388 # so Cocoa is happy (http://crbug.com/20441). |
1386 'locales': [ | 1389 'locales': [ |
1387 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | 1390 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', |
1388 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he', | 1391 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he', |
1389 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', | 1392 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', |
1390 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', | 1393 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', |
(...skipping 4393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5784 # settings in target dicts. SYMROOT is a special case, because many other | 5787 # settings in target dicts. SYMROOT is a special case, because many other |
5785 # Xcode variables depend on it, including variables such as | 5788 # Xcode variables depend on it, including variables such as |
5786 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5789 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5787 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5790 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5788 # files to appear (when present) in the UI as actual files and not red | 5791 # files to appear (when present) in the UI as actual files and not red |
5789 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5792 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5790 # and therefore SYMROOT, needs to be set at the project level. | 5793 # and therefore SYMROOT, needs to be set at the project level. |
5791 'SYMROOT': '<(DEPTH)/xcodebuild', | 5794 'SYMROOT': '<(DEPTH)/xcodebuild', |
5792 }, | 5795 }, |
5793 } | 5796 } |
OLD | NEW |