| Index: mojo/tools/mopy/paths.py
|
| diff --git a/mojo/tools/mopy/paths.py b/mojo/tools/mopy/paths.py
|
| index 49e1c50388746061916fd36879987bb0f8055379..bade8c07f2e28a9eaf532eac68a4ce167d025b86 100644
|
| --- a/mojo/tools/mopy/paths.py
|
| +++ b/mojo/tools/mopy/paths.py
|
| @@ -33,16 +33,9 @@ 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 = self.mojo_shell_path
|
| 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."""
|
|
|