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

Side by Side Diff: masters/master.chromium/master_full_cfg.py

Issue 8029001: check_licenses, plan B: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'arm_neon=0 ' 94 'arm_neon=0 '
95 'arm_fpu=vfpv3-d16 ' 95 'arm_fpu=vfpv3-d16 '
96 'chromeos=1 ' # Since this is the intersting variation. 96 'chromeos=1 ' # Since this is the intersting variation.
97 ), 97 ),
98 } 98 }
99 99
100 B('Linux', 'linux_clobber', 'compile|testers', 'chromium', 100 B('Linux', 'linux_clobber', 'compile|testers', 'chromium',
101 notify_on_missing=True) 101 notify_on_missing=True)
102 F('linux_clobber', linux().ChromiumFactory( 102 F('linux_clobber', linux().ChromiumFactory(
103 clobber=True, 103 clobber=True,
104 tests=['sizes', 'check_perms'], 104 tests=['sizes', 'check_perms', 'check_licenses'],
105 options=['--compiler=goma'], 105 options=['--compiler=goma'],
106 factory_properties={'archive_build': True, 106 factory_properties={'archive_build': True,
107 'gs_bucket': 'gs://chromium-browser-snapshots', 107 'gs_bucket': 'gs://chromium-browser-snapshots',
108 'show_perf_results': True, 108 'show_perf_results': True,
109 'perf_id': 'chromium-rel-linux', 109 'perf_id': 'chromium-rel-linux',
110 'expectations': True, 110 'expectations': True,
111 'generate_gtest_json': True, 111 'generate_gtest_json': True,
112 'gclient_env': {'GYP_DEFINES':'target_arch=ia32'},})) 112 'gclient_env': {'GYP_DEFINES':'target_arch=ia32'},}))
113 113
114 B('Linux x64', 'linux64_clobber', 'compile|testers', 'chromium', 114 B('Linux x64', 'linux64_clobber', 'compile|testers', 'chromium',
(...skipping 19 matching lines...) Expand all
134 compile_timeout=3600, 134 compile_timeout=3600,
135 options=['--build-tool=make', 135 options=['--build-tool=make',
136 '--crosstool=' + crosstool_prefix, 136 '--crosstool=' + crosstool_prefix,
137 'chromeos_builder'], 137 'chromeos_builder'],
138 factory_properties={'archive_build': True, 138 factory_properties={'archive_build': True,
139 'gs_bucket': 'gs://chromium-browser-snapshots', 139 'gs_bucket': 'gs://chromium-browser-snapshots',
140 'gclient_env': arm_gclient_env})) 140 'gclient_env': arm_gclient_env}))
141 141
142 def Update(config, active_master, c): 142 def Update(config, active_master, c):
143 return helper.Update(c) 143 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.lkgr/lkgr_finder.py ('k') | masters/master.chromium/master_linux_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698