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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/chromium_config.py

Issue 2034623003: [Android] Add disable_neon config. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 recipe_engine.config_types import Path 5 from recipe_engine.config_types import Path
6 from recipe_engine import config as recipe_config 6 from recipe_engine import config as recipe_config
7 7
8 import DEPS 8 import DEPS
9 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 9 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
10 10
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 @CONFIG_CTX(includes=['main_builder']) 202 @CONFIG_CTX(includes=['main_builder'])
203 def perf(c): 203 def perf(c):
204 gyp_defs = c.gyp_env.GYP_DEFINES 204 gyp_defs = c.gyp_env.GYP_DEFINES
205 gyp_defs['branding'] = 'Chrome' 205 gyp_defs['branding'] = 'Chrome'
206 gyp_defs['buildtype'] = 'Official' 206 gyp_defs['buildtype'] = 'Official'
207 207
208 @CONFIG_CTX(includes=['main_builder']) 208 @CONFIG_CTX(includes=['main_builder'])
209 def cast_builder(c): 209 def cast_builder(c):
210 c.gyp_env.GYP_DEFINES['chromecast'] = 1 210 c.gyp_env.GYP_DEFINES['chromecast'] = 1
211 211
212 def disable_neon(c): # pragma: no cover
213 c.gn_args.append('arm_use_neon=false')
214 c.gyp_env.GYP_DEFINES['arm_neon'] = 0
215
212 @CONFIG_CTX() 216 @CONFIG_CTX()
213 def errorprone(c): 217 def errorprone(c):
214 c.gyp_env.GYP_DEFINES['enable_errorprone'] = 1 218 c.gyp_env.GYP_DEFINES['enable_errorprone'] = 1
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698