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

Side by Side Diff: masters/master.chromium.chromiumos/master_chromiumos_cfg.py

Issue 63423007: Run google_apis_unittests on chromeos bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: rebase Created 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | masters/master.chromium.chromiumos/master_gatekeeper_cfg.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 23 matching lines...) Expand all
34 'cacheinvalidation_unittests', 34 'cacheinvalidation_unittests',
35 'cc_unittests', 35 'cc_unittests',
36 'chromedriver_tests', 36 'chromedriver_tests',
37 'chromedriver2_unittests', 37 'chromedriver2_unittests',
38 'components_unittests', 38 'components_unittests',
39 'content_browsertests', 39 'content_browsertests',
40 'content_unittests', 40 'content_unittests',
41 'crypto_unittests', 41 'crypto_unittests',
42 'device_unittests', 42 'device_unittests',
43 'events_unittests', 43 'events_unittests',
44 'google_apis_unittests',
44 'gpu_unittests', 45 'gpu_unittests',
45 'jingle_unittests', 46 'jingle_unittests',
46 'media_unittests', 47 'media_unittests',
47 'net_unittests', 48 'net_unittests',
48 'ppapi_unittests', 49 'ppapi_unittests',
49 'printing_unittests', 50 'printing_unittests',
50 'remoting_unittests', 51 'remoting_unittests',
51 'sync_integration_tests', 52 'sync_integration_tests',
52 'sync_unit_tests', 53 'sync_unit_tests',
53 'ui_unittests', 54 'ui_unittests',
(...skipping 11 matching lines...) Expand all
65 ('cacheinvalidation_unittests', 'cacheinvalidation_unittests', 1), 66 ('cacheinvalidation_unittests', 'cacheinvalidation_unittests', 1),
66 ('chromeos_unittests', 'chromeos_unittests', 1), 67 ('chromeos_unittests', 'chromeos_unittests', 1),
67 ('components_unittests', 'components_unittests', 1), 68 ('components_unittests', 'components_unittests', 1),
68 ('compositor', 'compositor_unittests', 1), 69 ('compositor', 'compositor_unittests', 1),
69 ('content_browsertests', 'content_browsertests', 2), 70 ('content_browsertests', 'content_browsertests', 2),
70 ('content_unittests', 'content_unittests', 1), 71 ('content_unittests', 'content_unittests', 1),
71 ('crypto_unittests', 'crypto_unittests', 1), 72 ('crypto_unittests', 'crypto_unittests', 1),
72 ('dbus', 'dbus_unittests', 1), 73 ('dbus', 'dbus_unittests', 1),
73 ('device_unittests', 'device_unittests', 1), 74 ('device_unittests', 'device_unittests', 1),
74 ('events', 'aura_builder', 1), 75 ('events', 'aura_builder', 1),
75 ('gpu', 'gpu_unittests', 1), 76 ('google_apis_unittests', 'google_apis_unittests', 1),
76 ('googleurl', 'url_unittests', 1), 77 ('googleurl', 'url_unittests', 1),
77 (None, 'url_unittests', 1), 78 (None, 'url_unittests', 1),
79 ('gpu', 'gpu_unittests', 1),
78 ('interactive_ui_tests', 'interactive_ui_tests', 3), 80 ('interactive_ui_tests', 'interactive_ui_tests', 3),
79 ('ipc_tests', 'ipc_tests', 1), 81 ('ipc_tests', 'ipc_tests', 1),
80 ('jingle', 'jingle_unittests', 1), 82 ('jingle', 'jingle_unittests', 1),
81 ('media', 'media_unittests', 1), 83 ('media', 'media_unittests', 1),
82 ('message_center_unittests', 'message_center_unittests', 1), 84 ('message_center_unittests', 'message_center_unittests', 1),
83 ('net', 'net_unittests', 1), 85 ('net', 'net_unittests', 1),
84 ('ppapi_unittests', 'ppapi_unittests', 1), 86 ('ppapi_unittests', 'ppapi_unittests', 1),
85 ('printing', 'printing_unittests', 1), 87 ('printing', 'printing_unittests', 1),
86 ('remoting', 'remoting_unittests', 1), 88 ('remoting', 'remoting_unittests', 1),
87 #('safe_browsing', 'safe_browsing_tests', 0), 89 #('safe_browsing', 'safe_browsing_tests', 0),
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 target='Debug', 260 target='Debug',
259 tests=extract_tests(linux_chromeos_tests, 3), 261 tests=extract_tests(linux_chromeos_tests, 3),
260 factory_properties={'chromeos': 1, 262 factory_properties={'chromeos': 1,
261 'sharded_tests': sharded_tests, 263 'sharded_tests': sharded_tests,
262 'generate_gtest_json': True,})) 264 'generate_gtest_json': True,}))
263 265
264 266
265 267
266 def Update(config, active_master, c): 268 def Update(config, active_master, c):
267 return helper.Update(c) 269 return helper.Update(c)
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.chromiumos/master_gatekeeper_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698