76c5f5cc8a
In the GN build, libchromiumcontent is no longer a distinct library, but merely a container for a set of scripts and patches. Maintaining those patches in a separate repository is tedious and error-prone, so merge them into the main repo. Once this is merged and GN is the default way to build Electron, the libchromiumcontent repository can be archived.
13 lines
444 B
Diff
13 lines
444 B
Diff
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
|
|
index c0477a6fe82d..3a020f2e2006 100644
|
|
--- a/skia/BUILD.gn
|
|
+++ b/skia/BUILD.gn
|
|
@@ -125,7 +125,7 @@ config("skia_library_config") {
|
|
|
|
defines = []
|
|
|
|
- if (!is_ios && !use_system_freetype) {
|
|
+ if (!is_ios && (is_win || is_mac)) {
|
|
defines += [ "SK_FREETYPE_MINIMUM_RUNTIME_VERSION=(((FREETYPE_MAJOR) * 0x01000000) | ((FREETYPE_MINOR) * 0x00010000) | ((FREETYPE_PATCH) * 0x00000100))" ]
|
|
}
|
|
|