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

Side by Side Diff: scripts/slave/recipe_modules/base_android/api.py

Issue 75163006: WebRTC Android APK trybot recipe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased, removed video_engine_tests Created 7 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 from slave import recipe_api
6
7 class BaseAndroidApi(recipe_api.RecipeApi):
8 def __init__(self, **kwargs):
9 super(BaseAndroidApi, self).__init__(**kwargs)
10 self._env = {}
11
12 def envsetup(self):
13 """Use envsetup.sh to read environment variables to use for Android.
14
15 This environment will be used for runhooks, compile and test_runner with the
16 exception for the GYP_* variables, which are excluded to avoid confusion
17 with settings in the chromium recipe module config.
18 """
19 envsetup_cmd = [self.m.path.checkout('build', 'android', 'envsetup.sh')]
20 if self.target_arch:
21 envsetup_cmd += ['--target-arch=%s' % self.target_arch]
22
23 cmd = ([self.m.path.build('scripts', 'slave', 'env_dump.py'),
24 '--output-json', self.m.json.output()] + envsetup_cmd)
25 yield self.m.step('envsetup', cmd, env=self._env)
26
27 env_diff = self.m.step_history.last_step().json.output
28 self._env.update((k, v) for k, v in env_diff.iteritems()
29 if not k.startswith('GYP_'))
30
31 @property
32 def target_arch(self):
33 """Convert from recipe arch to Android architecture string."""
34 return {
35 'intel': 'x86',
36 'arm': 'arm',
37 'mips': 'mips',
38 }.get(self.m.chromium.c.TARGET_ARCH, '')
39
40 def runhooks(self):
41 return self.m.chromium.runhooks(env=self._env)
42
43 def compile(self):
44 return self.m.chromium.compile(env=self._env)
45
46 def test_runner(self, test):
47 script = self.m.path.checkout('build', 'android', 'test_runner.py')
48 args = ['gtest', '-s', test, '--verbose']
49 if self.m.chromium.c.BUILD_CONFIG == 'Release':
50 args += ['--release']
51 return self.m.python(test, script, args, env=self._env)
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/base_android/__init__.py ('k') | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698