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

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

Issue 10641005: Use ui_unittests instead of gfx_unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 8 years, 6 months 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 | Annotate | Revision Log
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 26 matching lines...) Expand all
37 37
38 linux_options = [ 38 linux_options = [
39 'aura_builder', 39 'aura_builder',
40 'base_unittests', 40 'base_unittests',
41 'browser_tests', 41 'browser_tests',
42 'cacheinvalidation_unittests', 42 'cacheinvalidation_unittests',
43 'compositor_unittests', 43 'compositor_unittests',
44 'content_unittests', 44 'content_unittests',
45 'crypto_unittests', 45 'crypto_unittests',
46 'dbus_unittests', 46 'dbus_unittests',
47 'gfx_unittests',
48 'gpu_unittests', 47 'gpu_unittests',
49 'googleurl_unittests', 48 'googleurl_unittests',
50 'interactive_ui_tests', 49 'interactive_ui_tests',
51 'ipc_tests', 50 'ipc_tests',
52 'jingle_unittests', 51 'jingle_unittests',
53 'media_unittests', 52 'media_unittests',
54 'net_unittests', 53 'net_unittests',
55 'printing_unittests', 54 'printing_unittests',
56 'remoting_unittests', 55 'remoting_unittests',
57 #'safe_browsing_tests', 56 #'safe_browsing_tests',
58 'sql_unittests', 57 'sql_unittests',
59 'sync_unit_tests', 58 'sync_unit_tests',
59 'ui_unittests',
60 'unit_tests', 60 'unit_tests',
61 'views_unittests', 61 'views_unittests',
62 ] 62 ]
63 63
64 linux_tests_1 = [ 64 linux_tests_1 = [
65 'aura', 65 'aura',
66 'aura_shell', 66 'aura_shell',
67 'base', 67 'base',
68 'cacheinvalidation', 68 'cacheinvalidation',
69 'compositor', 69 'compositor',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 target='Debug', 230 target='Debug',
231 tests=linux_tests_3, 231 tests=linux_tests_3,
232 factory_properties={'chromeos': 1, 232 factory_properties={'chromeos': 1,
233 'sharded_tests': sharded_tests, 233 'sharded_tests': sharded_tests,
234 'generate_gtest_json': True,})) 234 'generate_gtest_json': True,}))
235 235
236 236
237 237
238 def Update(config, active_master, c): 238 def Update(config, active_master, c):
239 return helper.Update(c) 239 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698