Index: third_party/zlib/BUILD.gn |
diff --git a/third_party/zlib/BUILD.gn b/third_party/zlib/BUILD.gn |
index 323ff86e9bb121dd4a71df71912f778dea2ce836..c1d51e4bb3d258396d384c2f4ee6e418384e3a59 100644 |
--- a/third_party/zlib/BUILD.gn |
+++ b/third_party/zlib/BUILD.gn |
@@ -6,7 +6,7 @@ config("zlib_config") { |
include_dirs = [ "." ] |
} |
-static_library("zlib") { |
+source_set("zlib") { |
if (!is_win) { |
# Don't stomp on "libzlib" on other platforms. |
output_name = "chrome_zlib" |
@@ -48,7 +48,7 @@ static_library("zlib") { |
direct_dependent_configs = [ ":zlib_config" ] |
} |
-static_library("minizip") { |
+source_set("minizip") { |
sources = [ |
"contrib/minizip/ioapi.c", |
"contrib/minizip/ioapi.h", |
@@ -85,7 +85,7 @@ static_library("minizip") { |
} |
if (!is_android) { |
- static_library("zip") { |
+ source_set("zip") { |
sources = [ |
"google/zip.cc", |
"google/zip.h", |