| Index: masters/master.chromium.webkit/master_linux_latest_cfg.py
|
| ===================================================================
|
| --- masters/master.chromium.webkit/master_linux_latest_cfg.py (revision 172130)
|
| +++ masters/master.chromium.webkit/master_linux_latest_cfg.py (working copy)
|
| @@ -39,8 +39,14 @@
|
| 'interactive_ui',
|
| 'unit',
|
| ],
|
| - options=['--compiler=goma'],
|
| - factory_properties={'generate_gtest_json': True}))
|
| + options=[
|
| + '--build-tool=ninja',
|
| + '--compiler=goma'
|
| + ],
|
| + factory_properties={
|
| + 'generate_gtest_json': True,
|
| + 'gclient_env': { 'GYP_GENERATORS': 'ninja' },
|
| + }))
|
|
|
| linux_aura_options = [
|
| 'aura_builder',
|
| @@ -74,15 +80,22 @@
|
| #'content_browsertests',
|
| 'unit',
|
| ],
|
| - options=['--compiler=goma'] + linux_aura_options,
|
| + options=[
|
| + '--build-tool=ninja',
|
| + '--compiler=goma',
|
| + ] + linux_aura_options,
|
| factory_properties={
|
| 'generate_gtest_json': True,
|
| - 'gclient_env': {'GYP_DEFINES': 'use_aura=1'}
|
| + 'gclient_env': {'GYP_DEFINES': 'use_aura=1', 'GYP_GENERATORS': 'ninja'}
|
| }))
|
|
|
| B('Linux Perf', 'f_linux_perf_rel', scheduler='s9_webkit_rel')
|
| F('f_linux_perf_rel', linux().ChromiumWebkitLatestFactory(
|
| - options=['--compiler=goma', 'chromium_builder_perf'],
|
| + options=[
|
| + '--build-tool=ninja',
|
| + '--compiler=goma',
|
| + 'chromium_builder_perf'
|
| + ],
|
| tests=[
|
| 'dom_perf',
|
| 'dromaeo',
|
| @@ -98,17 +111,28 @@
|
| 'startup',
|
| 'sunspider'
|
| ],
|
| - factory_properties={'perf_id': 'chromium-rel-linux-webkit',
|
| - 'show_perf_results': True,}))
|
| + factory_properties={
|
| + 'perf_id': 'chromium-rel-linux-webkit',
|
| + 'show_perf_results': True,
|
| + 'gclient_env': { 'GYP_GENERATORS': 'ninja' },
|
| + }))
|
|
|
| valgrind_gyp_defines = chromium_factory.ChromiumFactory.MEMORY_TOOLS_GYP_DEFINES
|
| B('Linux Valgrind', 'f_linux_valgrind_rel', scheduler='s9_webkit_rel')
|
| F('f_linux_valgrind_rel', linux().ChromiumWebkitLatestFactory(
|
| - options=['--compiler=goma', 'test_shell', 'test_shell_tests'],
|
| + options=[
|
| + '--build-tool=ninja',
|
| + '--compiler=goma',
|
| + 'test_shell',
|
| + 'test_shell_tests'],
|
| tests=['valgrind_test_shell'],
|
| factory_properties={
|
| - 'needs_valgrind': True,
|
| - 'gclient_env': {'GYP_DEFINES' : valgrind_gyp_defines,}}))
|
| + 'needs_valgrind': True,
|
| + 'gclient_env': {
|
| + 'GYP_DEFINES' : valgrind_gyp_defines,
|
| + 'GYP_GENERATORS': 'ninja',
|
| + },
|
| + }))
|
|
|
|
|
| def Update(config, active_master, c):
|
|
|