| Index: mojo/tools/mopy/paths.py
|
| diff --git a/mojo/tools/mopy/paths.py b/mojo/tools/mopy/paths.py
|
| index bade8c07f2e28a9eaf532eac68a4ce167d025b86..c75882f244ecaa6e68391c6d1603623ebc3a75e0 100644
|
| --- a/mojo/tools/mopy/paths.py
|
| +++ b/mojo/tools/mopy/paths.py
|
| @@ -33,9 +33,16 @@ class Paths(object):
|
| if Config.GetHostOS() == Config.OS_WINDOWS:
|
| self.mojo_launcher_path += ".exe"
|
| self.mojo_shell_path += ".exe"
|
| + if config and config.target_os == Config.OS_ANDROID:
|
| + self.target_mojo_shell_path = os.path.join(self.build_dir,
|
| + "apks",
|
| + "MojoShell.apk")
|
| + else:
|
| + self.target_mojo_shell_path = None
|
| else:
|
| self.mojo_launcher_path = None
|
| self.mojo_shell_path = None
|
| + self.target_mojo_shell_path = None
|
|
|
| def RelPath(self, path):
|
| """Returns the given path, relative to the current directory."""
|
|
|