aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
authorUK992 <urbankrajnc92@gmail.com>2018-03-16 19:54:19 +0100
committerUK992 <urbankrajnc92@gmail.com>2018-03-17 02:11:29 +0100
commit13ce5c239c6837cf265c18802bd9f084f7fd0dd0 (patch)
treed02158b09c4c845c64339b0f264992989ebbb092 /python/servo
parent1ae5715309ab5acb9ac401fd99f34a0667b2ee53 (diff)
downloadservo-13ce5c239c6837cf265c18802bd9f084f7fd0dd0.tar.gz
servo-13ce5c239c6837cf265c18802bd9f084f7fd0dd0.zip
Add icon to servo.exe
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/build_commands.py3
-rw-r--r--python/servo/package_commands.py1
2 files changed, 0 insertions, 4 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 967e8c35509..f1ed3f885fa 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -354,9 +354,6 @@ class MachCommands(CommandBase):
if status == 0:
if sys.platform == "win32":
servo_exe_dir = path.join(base_path, "debug" if dev else "release")
- # On windows, copy in our manifest
- shutil.copy(path.join(self.get_top_dir(), "components", "servo", "servo.exe.manifest"),
- servo_exe_dir)
msvc_x64 = "64" if "x86_64" in (target or host_triple()) else ""
# on msvc builds, use editbin to change the subsystem to windows, but only
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py
index 2a2f2f74d8c..8fb97e9eb70 100644
--- a/python/servo/package_commands.py
+++ b/python/servo/package_commands.py
@@ -317,7 +317,6 @@ class PackageCommands(CommandBase):
dir_to_resources = path.join(dir_to_temp_servo, 'resources')
shutil.copytree(path.join(dir_to_root, 'resources'), dir_to_resources)
shutil.copy(binary_path, dir_to_temp_servo)
- shutil.copy("{}.manifest".format(binary_path), dir_to_temp_servo)
copy_windows_dependencies(target_dir, dir_to_temp_servo)
change_prefs(dir_to_resources, "windows")