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

Side by Side Diff: masters/master.chromium.memory/master_linux_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 27 matching lines...) Expand all
38 # produced by Clang on Linux is small enough. 38 # produced by Clang on Linux is small enough.
39 F('asan_rel', linux().ChromiumASANFactory( 39 F('asan_rel', linux().ChromiumASANFactory(
40 slave_type='Builder', 40 slave_type='Builder',
41 options=[ 41 options=[
42 '--compiler=goma-clang', 42 '--compiler=goma-clang',
43 'base_unittests', 43 'base_unittests',
44 'browser_tests', 44 'browser_tests',
45 'cacheinvalidation_unittests', 45 'cacheinvalidation_unittests',
46 'content_unittests', 46 'content_unittests',
47 'crypto_unittests', 47 'crypto_unittests',
48 'gfx_unittests',
49 'googleurl_unittests', 48 'googleurl_unittests',
50 'gpu_unittests', 49 'gpu_unittests',
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 ], 61 ],
62 factory_properties={ 62 factory_properties={
63 'gclient_env': {'GYP_DEFINES': 63 'gclient_env': {'GYP_DEFINES':
64 ('asan=1 ' 64 ('asan=1 '
65 'linux_use_tcmalloc=0 ')}, 65 'linux_use_tcmalloc=0 ')},
66 'trigger': 'linux_asan_rel_trigger' })) 66 'trigger': 'linux_asan_rel_trigger' }))
67 67
68 # 68 #
69 # Linux ASAN Rel testers 69 # Linux ASAN Rel testers
(...skipping 24 matching lines...) Expand all
94 'browser_tests', 94 'browser_tests',
95 'googleurl', 95 'googleurl',
96 'media', 96 'media',
97 'printing', 97 'printing',
98 'remoting', 98 'remoting',
99 ], 99 ],
100 factory_properties={'asan': True})) 100 factory_properties={'asan': True}))
101 101
102 def Update(config, active_master, c): 102 def Update(config, active_master, c):
103 return helper.Update(c) 103 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.memory.fyi/master.cfg ('k') | masters/master.chromium/master_linux_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698