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

Unified Diff: scripts/slave/recipe_modules/libyuv/chromium_config.py

Issue 2412033002: libyuv: Switch bots over to GN by default. (Closed)
Patch Set: Add WebRTC expectation changes Created 4 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
Index: scripts/slave/recipe_modules/libyuv/chromium_config.py
diff --git a/scripts/slave/recipe_modules/libyuv/chromium_config.py b/scripts/slave/recipe_modules/libyuv/chromium_config.py
index 4c98496f1ba1398fcc19fbe901cc9dfba75d6c3a..9685572e027d11df83183fa7fdf29a142e31ec16 100644
--- a/scripts/slave/recipe_modules/libyuv/chromium_config.py
+++ b/scripts/slave/recipe_modules/libyuv/chromium_config.py
@@ -29,6 +29,7 @@ def libyuv_gcc(c):
def libyuv_android(c):
if c.TARGET_ARCH == 'intel' and c.TARGET_BITS == 32:
c.gyp_env.GYP_DEFINES['android_full_debug'] = 1
+ c.gn_args.append('android_full_debug=true')
@CONFIG_CTX(includes=['android_clang'])
def libyuv_android_clang(c):
@@ -48,8 +49,8 @@ def libyuv_ios(c):
gyp_defs['OS'] = c.TARGET_PLATFORM
if c.TARGET_BITS == 64:
gyp_defs['target_subarch'] = 'arm64'
-
+ c.gn_args.append('target_os=%s' % c.TARGET_PLATFORM)
_libyuv_common(c)
def _libyuv_common(c):
- c.compile_py.default_targets = ['All']
+ c.compile_py.default_targets = []

Powered by Google App Engine
This is Rietveld 408576698