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

Unified Diff: scripts/slave/recipes/webrtc/ios.py

Issue 1730353002: WebRTC: Use custom mb_config_path for standalone bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « scripts/slave/recipe_modules/ios/api.py ('k') | scripts/slave/recipes/webrtc/ios.expected/gn_build.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/webrtc/ios.py
diff --git a/scripts/slave/recipes/webrtc/ios.py b/scripts/slave/recipes/webrtc/ios.py
index 6f4d6a90d9772497bd796ca5faa79ef0adf8d171..98b93e8ee0da971957514472ee85f0ec2e702471 100644
--- a/scripts/slave/recipes/webrtc/ios.py
+++ b/scripts/slave/recipes/webrtc/ios.py
@@ -36,7 +36,12 @@ def RunSteps(api):
api.ios.read_build_config(build_config_dir=build_config_dir,
include_dir=include_dir,
buildername=buildername)
- api.ios.build()
+ mb_config_path = api.path['checkout'].join(
+ 'webrtc',
+ 'build',
+ 'mb_config.pyl',
+ )
+ api.ios.build(mb_config_path=mb_config_path)
api.ios.test()
@@ -76,6 +81,31 @@ def GenTests(api):
)
yield (
+ api.test('gn_build')
+ + api.platform('mac', 64)
+ + api.properties(
+ buildername='ios',
+ buildnumber='0',
+ mastername='chromium.fake',
+ slavename='fake-vm',
+ )
+ + api.ios.make_test_build_config({
+ 'xcode version': 'fake xcode version',
+ 'GYP_DEFINES': {
+ },
+ "gn_args": [
+ "is_debug=true"
+ ],
+ "mb_type": "gn",
+ 'compiler': 'ninja',
+ 'configuration': 'Debug',
+ 'sdk': 'iphoneos8.0',
+ 'tests': [
+ ],
+ })
+ )
+
+ yield (
api.test('no_tests')
+ api.platform('mac', 64)
+ api.properties(
« no previous file with comments | « scripts/slave/recipe_modules/ios/api.py ('k') | scripts/slave/recipes/webrtc/ios.expected/gn_build.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698