| 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 = []
|
|
|