-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skia,crashpad,zeroc-ice,vcpkg-tool-gn] New vcpkg-tool-gn and update …
…of several ports (#24066)
- Loading branch information
Showing
27 changed files
with
604 additions
and
174 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
{ | ||
"name": "chromium-base", | ||
"version-string": "86.0.4199.1", | ||
"port-version": 3, | ||
"version": "86.0.4199.1", | ||
"port-version": 4, | ||
"description": "Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.", | ||
"homepage": "https://chromium.googlesource.com/chromium/src", | ||
"supports": "x64 & (osx | windows | linux) & !uwp" | ||
"license": "BSD-3-Clause", | ||
"supports": "x64 & (osx | windows | linux) & !uwp", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-tool-gn", | ||
"host": true | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,14 +1,18 @@ | ||
{ | ||
"name": "crashpad", | ||
"version-date": "2020-03-18", | ||
"port-version": 2, | ||
"version-date": "2022-04-16", | ||
"description": [ | ||
"Crashpad is a crash-reporting system.", | ||
"Crashpad is a library for capturing, storing and transmitting postmortem crash reports from a client to an upstream collection server. Crashpad aims to make it possible for clients to capture process state at the time of crash with the best possible fidelity and coverage, with the minimum of fuss." | ||
], | ||
"homepage": "https://chromium.googlesource.com/crashpad/crashpad/+/master/README.md", | ||
"supports": "x64 & (osx | windows)", | ||
"license": "Apache-2.0", | ||
"supports": "osx | windows", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-tool-gn", | ||
"host": true | ||
}, | ||
"zlib" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
diff --git a/src/dawn_native/BUILD.gn b/src/dawn_native/BUILD.gn | ||
index f73bfe24..e37792a0 100644 | ||
--- a/src/dawn_native/BUILD.gn | ||
+++ b/src/dawn_native/BUILD.gn | ||
@@ -145,7 +145,7 @@ source_set("dawn_native_sources") { | ||
":dawn_native_headers", | ||
":dawn_native_utils_gen", | ||
"${dawn_root}/src/common", | ||
- "${dawn_root}/third_party/gn/spirv_cross:spirv_cross", | ||
+ "//third_party/spirv-cross:spirv_cross", | ||
"${dawn_spirv_tools_dir}:spvtools_opt", | ||
"${dawn_spirv_tools_dir}:spvtools_val", | ||
"${dawn_tint_dir}/src:libtint", |
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,10 @@ | ||
import("../third_party.gni") | ||
|
||
system("fontconfig") { | ||
include_dirs = @_INCLUDES@ | ||
if(is_debug) { | ||
libs = @_LIBS_DBG@ | ||
} else { | ||
libs = @_LIBS_REL@ | ||
} | ||
} |
Oops, something went wrong.