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

Unified Diff: masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py

Issue 25792002: Turn off ash and aura by default on linux blink bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge to r226807 Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py
diff --git a/masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py b/masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py
index 4c8ef1b7dac9a1be05c8cdf616d400a4fca3203f..9141a4ff1e25b469d584e6c2df0505d1bc36f927 100644
--- a/masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py
+++ b/masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py
@@ -48,7 +48,10 @@ F('f_webkit_linux_rel', linux().ChromiumFactory(
],
factory_properties={
'archive_webkit_results': ActiveMaster.is_production_host,
- 'gclient_env': { 'GYP_GENERATORS': 'ninja' },
+ 'gclient_env': {
+ 'GYP_DEFINES': 'use_ash=0 use_aura=0',
+ 'GYP_GENERATORS': 'ninja',
+ },
'generate_gtest_json': True,
'test_results_server': 'test-results.appspot.com',
'blink_config': 'blink',
@@ -76,7 +79,10 @@ F('f_webkit_linux_rel_asan', linux().ChromiumFactory(
'archive_webkit_results': ActiveMaster.is_production_host,
'asan': True,
'blink_config': 'blink',
- 'gclient_env': {'GYP_DEFINES': asan_gyp, 'GYP_GENERATORS': 'ninja'},
+ 'gclient_env': {
+ 'GYP_DEFINES': asan_gyp + ' use_ash=0 use_aura=0',
+ 'GYP_GENERATORS': 'ninja',
+ },
'generate_gtest_json': True,
'gs_bucket': 'gs://webkit-asan',
'test_results_server': 'test-results.appspot.com',
@@ -107,7 +113,10 @@ F('f_webkit_dbg_tests', linux().ChromiumFactory(
'archive_webkit_results': ActiveMaster.is_production_host,
'generate_gtest_json': True,
'test_results_server': 'test-results.appspot.com',
- 'gclient_env': { 'GYP_GENERATORS': 'ninja' },
+ 'gclient_env': {
+ 'GYP_DEFINES': 'use_ash=0 use_aura=0',
+ 'GYP_GENERATORS':'ninja',
+ },
'blink_config': 'blink',
}))
« no previous file with comments | « no previous file | masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698