diff options
author | Michael Grigoryan <56165400+michaelgrigoryan25@users.noreply.github.com> | 2023-05-22 23:21:16 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 23:21:16 +0400 |
commit | 0f3e17818b0699625afcde8a1375a8b97644b722 (patch) | |
tree | 1f1fc8561babe3aad2e5b7513d6a11af067aa7aa /python/servo/build_commands.py | |
parent | b7c380405a5be47d78695f2c56161e1ee7f563e6 (diff) | |
parent | b1f9126163d6e3989a757a7aec2697c285e76ea1 (diff) | |
download | servo-0f3e17818b0699625afcde8a1375a8b97644b722.tar.gz servo-0f3e17818b0699625afcde8a1375a8b97644b722.zip |
Merge branch 'servo:master' into libmlservo#29768
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 1f69637ad85..b65321cb5d3 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -557,8 +557,6 @@ class MachCommands(CommandBase): features=features, **kwargs ) - elapsed = time() - build_start - # Do some additional things if the build succeeded if status == 0: if android and not no_package: @@ -631,6 +629,7 @@ class MachCommands(CommandBase): if has_media_stack: gst_root = gstreamer_root(target, env) + print("Packaging gstreamer dylibs") if not package_gstreamer_dylibs(gst_root, servo_path): return 1 @@ -655,6 +654,7 @@ class MachCommands(CommandBase): # Generate Desktop Notification if elapsed-time > some threshold value + elapsed = time() - build_start elapsed_delta = datetime.timedelta(seconds=int(elapsed)) build_message = f"{'Succeeded' if status == 0 else 'Failed'} in {elapsed_delta}" self.notify("Servo build", build_message) @@ -858,8 +858,8 @@ def copy_dependencies(binary_path, lib_path, gst_root): # Update binary libraries binary_dependencies = set(otool(binary_path)) - binary_dependencies = binary_dependencies.union(macos_plugins()) change_non_system_libraries_path(binary_dependencies, relative_path, binary_path) + binary_dependencies = binary_dependencies.union(macos_plugins()) # Update dependencies libraries need_checked = binary_dependencies |