Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1364)

Unified Diff: content/test/gpu/generate_buildbot_json.py

Issue 2509553002: additional_compile_targets:all for ChromiumOS (Closed)
Patch Set: additional_compile_targets:all for ChromiumOS Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/generate_buildbot_json.py
diff --git a/content/test/gpu/generate_buildbot_json.py b/content/test/gpu/generate_buildbot_json.py
index 18aa93813eb81c97e07f8b7ecce0258fda888642..001fb1dd63b8b5b2751811ec6d0e3f9a52de8671 100755
--- a/content/test/gpu/generate_buildbot_json.py
+++ b/content/test/gpu/generate_buildbot_json.py
@@ -18,14 +18,14 @@ THIS_DIR = os.path.dirname(os.path.abspath(__file__))
SRC_DIR = os.path.dirname(os.path.dirname(os.path.dirname(THIS_DIR)))
WATERFALL = {
- 'builders': [
- 'GPU Win Builder',
- 'GPU Win Builder (dbg)',
- 'GPU Mac Builder',
- 'GPU Mac Builder (dbg)',
- 'GPU Linux Builder',
- 'GPU Linux Builder (dbg)',
- ],
+ 'builders': {
+ 'GPU Win Builder' : {},
+ 'GPU Win Builder (dbg)' : {},
+ 'GPU Mac Builder' : {},
+ 'GPU Mac Builder (dbg)' : {},
+ 'GPU Linux Builder' : {},
+ 'GPU Linux Builder (dbg)' : {},
+ },
'testers': {
'Win7 Release (NVIDIA)': {
@@ -122,17 +122,19 @@ WATERFALL = {
}
FYI_WATERFALL = {
- 'builders': [
- 'GPU Win Builder',
- 'GPU Win Builder (dbg)',
- 'GPU Win x64 Builder',
- 'GPU Win x64 Builder (dbg)',
- 'GPU Mac Builder',
- 'GPU Mac Builder (dbg)',
- 'GPU Linux Builder',
- 'GPU Linux Builder (dbg)',
- 'Linux ChromiumOS Builder',
- ],
+ 'builders': {
+ 'GPU Win Builder' : {},
+ 'GPU Win Builder (dbg)' : {},
+ 'GPU Win x64 Builder' : {},
+ 'GPU Win x64 Builder (dbg)' : {},
+ 'GPU Mac Builder' : {},
+ 'GPU Mac Builder (dbg)' : {},
+ 'GPU Linux Builder' : {},
+ 'GPU Linux Builder (dbg)' : {},
+ 'Linux ChromiumOS Builder' : {
+ 'additional_compile_targets' : [ "All" ]
+ },
+ },
'testers': {
'Win7 Release (NVIDIA)': {
@@ -1414,8 +1416,8 @@ def generate_telemetry_tests(tester_name, tester_config,
def generate_all_tests(waterfall, is_fyi):
tests = {}
- for builder in waterfall['builders']:
- tests[builder] = {}
+ for builder, config in waterfall['builders'].iteritems():
+ tests[builder] = config
for name, config in waterfall['testers'].iteritems():
gtests = generate_gtests(name, config, COMMON_GTESTS, is_fyi)
isolated_scripts = \
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698