-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: patching rules_webtesting to fix chrome path
- Loading branch information
1 parent
2d6931c
commit 97933d8
Showing
4 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
commit 324d178e836b8f93c93321312e890176c986147a | ||
Author: Yun Peng <[email protected]> | ||
Date: Tue Aug 27 13:42:35 2019 +0200 | ||
|
||
Fix chromium rule and definition for Windows | ||
|
||
1. Write output dir of named_files in metadata. This could help us locate named | ||
files in runfiles, because they are under the tree artifact of the output dir. | ||
|
||
2. Fix the chromium path for Windows | ||
|
||
diff --git a/third_party/chromium/BUILD.bazel b/third_party/chromium/BUILD.bazel | ||
index 384d018..2cbbb4a 100644 | ||
--- a/third_party/chromium/BUILD.bazel | ||
+++ b/third_party/chromium/BUILD.bazel | ||
@@ -33,7 +33,7 @@ web_test_archive( | ||
"CHROMIUM": "chrome-mac/Chromium.app/Contents/MacOS/chromium", | ||
}, | ||
"//common/conditions:windows": { | ||
- "CHROMIUM": "chrome-win32/chrome.exe", | ||
+ "CHROMIUM": "chrome-win/chrome.exe", | ||
}, | ||
}), | ||
visibility = ["//browsers:__subpackages__"], |