blob: aa05cc19fb3692109e14ea8ac657bb3214df6c2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
diff --git a/BUILD.gn b/BUILD.gn
index 62210c2f6..053fbff6d 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -341,7 +341,7 @@ group("pdfium_public_headers") {
]
}
-component("pdfium") {
+shared_library("pdfium") {
output_name = "pdfium"
libs = []
configs += [ ":pdfium_strict_config" ]
@@ -381,6 +381,9 @@ component("pdfium") {
"gdi32.lib",
"user32.lib",
]
+ sources = [
+ "resources.rc"
+ ]
}
if (is_mac) {
|