Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
| 7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
| 8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
| 9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
| 10 | 10 |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1196 | 1196 |
| 1197 'debug_trybot': [ | 1197 'debug_trybot': [ |
| 1198 'debug_trybot', | 1198 'debug_trybot', |
| 1199 ], | 1199 ], |
| 1200 | 1200 |
| 1201 'debug_trybot_x86': [ | 1201 'debug_trybot_x86': [ |
| 1202 'debug_trybot', 'x86', | 1202 'debug_trybot', 'x86', |
| 1203 ], | 1203 ], |
| 1204 | 1204 |
| 1205 'gpu_fyi_tests_chromeos_ozone_release_trybot': [ | 1205 'gpu_fyi_tests_chromeos_ozone_release_trybot': [ |
| 1206 'gpu_fyi_tests', 'release_trybot', 'chromeos', 'ozone', | 1206 'gpu_fyi_tests', 'release_trybot', 'chromeos', 'angle_ozone', |
|
Jamie Madill
2017/02/22 20:46:30
nit: make this a use_system_drm_and_gbm, and keep
| |
| 1207 ], | 1207 ], |
| 1208 | 1208 |
| 1209 'gpu_fyi_tests_chromeos_release_trybot': [ | 1209 'gpu_fyi_tests_chromeos_release_trybot': [ |
| 1210 'gpu_fyi_tests', 'release_trybot', 'chromeos', | 1210 'gpu_fyi_tests', 'release_trybot', 'chromeos', |
| 1211 ], | 1211 ], |
| 1212 | 1212 |
| 1213 'gpu_fyi_tests_debug_trybot': [ | 1213 'gpu_fyi_tests_debug_trybot': [ |
| 1214 'gpu_fyi_tests', 'debug_trybot', | 1214 'gpu_fyi_tests', 'debug_trybot', |
| 1215 ], | 1215 ], |
| 1216 | 1216 |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1524 }, | 1524 }, |
| 1525 | 1525 |
| 1526 'android_without_codecs': { | 1526 'android_without_codecs': { |
| 1527 'gn_args': 'target_os="android"', | 1527 'gn_args': 'target_os="android"', |
| 1528 }, | 1528 }, |
| 1529 | 1529 |
| 1530 'angle_deqp_tests': { | 1530 'angle_deqp_tests': { |
| 1531 'gn_args': 'build_angle_deqp_tests=true', | 1531 'gn_args': 'build_angle_deqp_tests=true', |
| 1532 }, | 1532 }, |
| 1533 | 1533 |
| 1534 'angle_ozone': { | |
| 1535 'gn_args': ('use_system_libdrm=true', 'use_system_minigbm=true', 'use_ozon e=true'), | |
| 1536 }, | |
| 1537 | |
| 1534 'arm': { | 1538 'arm': { |
| 1535 'gn_args': 'target_cpu="arm"', | 1539 'gn_args': 'target_cpu="arm"', |
| 1536 }, | 1540 }, |
| 1537 | 1541 |
| 1538 'arm64': { | 1542 'arm64': { |
| 1539 'gn_args': 'target_cpu="arm64"', | 1543 'gn_args': 'target_cpu="arm64"', |
| 1540 }, | 1544 }, |
| 1541 | 1545 |
| 1542 'armv6': { | 1546 'armv6': { |
| 1543 'gn_args': 'arm_version=6', | 1547 'gn_args': 'arm_version=6', |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1902 | 1906 |
| 1903 'x64': { | 1907 'x64': { |
| 1904 'gn_args': 'target_cpu="x64"', | 1908 'gn_args': 'target_cpu="x64"', |
| 1905 }, | 1909 }, |
| 1906 | 1910 |
| 1907 'x86': { | 1911 'x86': { |
| 1908 'gn_args': 'target_cpu="x86"', | 1912 'gn_args': 'target_cpu="x86"', |
| 1909 }, | 1913 }, |
| 1910 }, | 1914 }, |
| 1911 } | 1915 } |
| OLD | NEW |