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

Unified Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 2055833002: Convert the last 4 remaining bots on the LKGR waterfall to recipes (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: ChromiumFactory be gone Created 4 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium/config.py
diff --git a/scripts/slave/recipe_modules/chromium/config.py b/scripts/slave/recipe_modules/chromium/config.py
index 6247700621e6ea275d0eb3942fa9b3d514f3a47e..ecef567f8a6d5af4e42b29a3adfdd5ddd6897e5b 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -803,6 +803,13 @@ def v8_verify_heap(c):
c.gyp_env.GYP_DEFINES['v8_enable_verify_heap'] = 1
@config_ctx()
+def v8_hybrid_arm(c):
+ c.gyp_env.GYP_DEFINES['disable_nacl'] = 1
+ c.gyp_env.GYP_DEFINES['v8_target_arch'] = 'arm'
+ c.gyp_env.GYP_DEFINES['target_arch'] = 'ia32'
+ c.gyp_env.GYP_DEFINES['host_arch'] = 'x86_64'
+
+@config_ctx()
def enable_ipc_fuzzer(c):
c.gyp_env.GYP_DEFINES['enable_ipc_fuzzer'] = 1

Powered by Google App Engine
This is Rietveld 408576698