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

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

Issue 1049333002: Cast builder: changes default compile targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 8 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
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 slave.recipe_config_types import Path 5 from slave.recipe_config_types import Path
6 from slave import recipe_config 6 from slave import recipe_config
7 7
8 from RECIPE_MODULES.chromium import CONFIG_CTX 8 from RECIPE_MODULES.chromium import CONFIG_CTX
9 9
10 @CONFIG_CTX(includes=['android_common', 'ninja', 'static_library'], 10 @CONFIG_CTX(includes=['android_common', 'ninja', 'static_library'],
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 gyp_defs['buildtype'] = 'Official' 170 gyp_defs['buildtype'] = 'Official'
171 171
172 @CONFIG_CTX(includes=['main_builder']) 172 @CONFIG_CTX(includes=['main_builder'])
173 def webview_perf(c): 173 def webview_perf(c):
174 gyp_defs = c.gyp_env.GYP_DEFINES 174 gyp_defs = c.gyp_env.GYP_DEFINES
175 gyp_defs['android_webview_telemetry_build'] = 1 175 gyp_defs['android_webview_telemetry_build'] = 1
176 176
177 @CONFIG_CTX(includes=['main_builder']) 177 @CONFIG_CTX(includes=['main_builder'])
178 def cast_builder(c): 178 def cast_builder(c):
179 c.gyp_env.GYP_DEFINES['chromecast'] = 1 179 c.gyp_env.GYP_DEFINES['chromecast'] = 1
180 c.compile_py.default_targets=['cast_shell_apk']
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipe_modules/chromium_tests/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698