| Index: tools/bots/android.py
|
| diff --git a/tools/bots/android.py b/tools/bots/android.py
|
| index b320ce09bd05115854665c378e1d5573662adb03..48c7bff99dafd2bdd5836cb338e328097b5cd57a 100644
|
| --- a/tools/bots/android.py
|
| +++ b/tools/bots/android.py
|
| @@ -45,9 +45,9 @@ def BuildAndroid(build_info):
|
| build and test to be run.
|
| """
|
| with bot.BuildStep('Build Android'):
|
| - targets = ['dart']
|
| + targets = ['android_embedder']
|
| args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
|
| - '--os=android ' + ' '.join(targets)]
|
| + '--os=android'] + targets
|
| print 'Building Android: %s' % (' '.join(args))
|
| bot.RunProcess(args)
|
|
|
|
|