Skip to content

Commit c2c5ca6

Browse files
authored
Remove our patching of the dawn source (#15)
1 parent 563513c commit c2c5ca6

File tree

2 files changed

+0
-32
lines changed

2 files changed

+0
-32
lines changed

Dawn/dawn_source.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.

Dawn/dawn_source.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -152,25 +152,6 @@ def fetch_dawn_source(hash: str) -> None:
152152
except subprocess.CalledProcessError as e:
153153
raise GitOperationError(f"Failed to checkout Dawn repository: {e.stderr}")
154154

155-
# Apply the patch to the Dawn source
156-
print("Applying patch to Dawn source...")
157-
try:
158-
subprocess.run(
159-
[
160-
"git",
161-
"apply",
162-
"--ignore-space-change",
163-
"--ignore-whitespace",
164-
"../dawn_source.patch",
165-
],
166-
cwd=str(get_dawn_path()),
167-
check=True,
168-
capture_output=True,
169-
text=True,
170-
)
171-
except subprocess.CalledProcessError as e:
172-
raise GitOperationError(f"Failed to apply patch to Dawn repository: {e.stderr}")
173-
174155
# Verify Dawn tools directory and fetch dawn dependencies
175156
dawn_source_tools = dest_dir / "tools" / "fetch_dawn_dependencies.py"
176157
if not dawn_source_tools.exists():

0 commit comments

Comments
 (0)