diff options
author | Paul Rouget <me@paulrouget.com> | 2018-09-28 11:37:38 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2018-10-02 08:09:35 +0200 |
commit | 6d543dec28f41a9a91302f2a2488a0f08c49853d (patch) | |
tree | 5e4be1cdb049da236d4f3bc61aa7ea1ac51e299e /python | |
parent | 057acdca2d806508be77e0e84c2a627e8b48fa41 (diff) | |
download | servo-6d543dec28f41a9a91302f2a2488a0f08c49853d.tar.gz servo-6d543dec28f41a9a91302f2a2488a0f08c49853d.zip |
com.mozilla to org.mozilla
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/devenv_commands.py | 2 | ||||
-rw-r--r-- | python/servo/post_build_commands.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index a357efa9a96..71181220b76 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -318,7 +318,7 @@ class MachCommands(CommandBase): ndk_gdb, "--adb", adb_path, "--project", "support/android/apk/servoapp/src/main/", - "--launch", "com.mozilla.servo.MainActivity", + "--launch", "org.mozilla.servo.MainActivity", "-x", f.name, "--verbose", ], env=env) diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 656e230c732..dc2731c0318 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -95,7 +95,7 @@ class PostBuildCommands(CommandBase): print("https://github.com/servo/servo/wiki/Building-for-Android#debugging-on-device") return script = [ - "am force-stop com.mozilla.servo", + "am force-stop org.mozilla.servo", ] json_params = shell_quote(json.dumps(params)) extra = "-e servoargs " + json_params @@ -103,9 +103,9 @@ class PostBuildCommands(CommandBase): if rust_log: extra += " -e servolog " + rust_log script += [ - "am start " + extra + " com.mozilla.servo/com.mozilla.servo.MainActivity", + "am start " + extra + " org.mozilla.servo/org.mozilla.servo.MainActivity", "sleep 0.5", - "echo Servo PID: $(pidof com.mozilla.servo)", + "echo Servo PID: $(pidof org.mozilla.servo)", "exit" ] args = [self.android_adb_path(env)] |