mirror of
https://github.com/servo/servo.git
synced 2025-09-10 15:08:21 +01:00
Move android port code to servoshell (#32533)
Signed-off-by: Jonathan Schwender <jonathan.schwender@huawei.com> Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
This commit is contained in:
parent
6f64a5afad
commit
24906e1c21
17 changed files with 156 additions and 241 deletions
|
@ -39,7 +39,7 @@ objdump_output = subprocess.check_output([
|
|||
'android-toolchains', 'ndk', 'toolchains', 'arm-linux-androideabi-4.9',
|
||||
'prebuilt', 'linux-x86_64', 'bin', 'arm-linux-androideabi-objdump'),
|
||||
'-T',
|
||||
'target/android/armv7-linux-androideabi/debug/libsimpleservo.so']
|
||||
'target/android/armv7-linux-androideabi/debug/libservoshell.so']
|
||||
).split(b'\n')
|
||||
|
||||
for line in objdump_output:
|
||||
|
|
|
@ -66,7 +66,7 @@ def main(avd_name, apk_path, *args):
|
|||
# in case they say something useful while we wait in subsequent steps.
|
||||
logcat_args = [
|
||||
"--format=raw", # Print no metadata, only log messages
|
||||
"simpleservo:D", # Show (debug level) Rust stdio
|
||||
"servoshell:D", # Show (debug level) Rust stdio
|
||||
"*:S", # Hide everything else
|
||||
]
|
||||
with terminate_on_exit(adb + ["logcat"] + logcat_args) as logcat:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue