summaryrefslogtreecommitdiff
path: root/samples/BUILD.gn
diff options
context:
space:
mode:
authorJohn Abd-El-Malek <jam@chromium.org>2015-02-17 13:26:45 -0800
committerJohn Abd-El-Malek <jam@chromium.org>2015-02-17 13:26:45 -0800
commitca6c0d3262d994fbb008ee1ae5ff19c1612bc982 (patch)
tree78b3c156cadf29152a39f67a76e7853394a55e9a /samples/BUILD.gn
parent54d8c39002a0f8e3925de888226d22f157987a34 (diff)
downloadpdfium-ca6c0d3262d994fbb008ee1ae5ff19c1612bc982.tar.xz
Fix pdfium_test build inside Chromium.
R=tsepez@chromium.org Review URL: https://codereview.chromium.org/925763003
Diffstat (limited to 'samples/BUILD.gn')
-rw-r--r--samples/BUILD.gn10
1 files changed, 10 insertions, 0 deletions
diff --git a/samples/BUILD.gn b/samples/BUILD.gn
index 6bd2a81359..ca7cafa685 100644
--- a/samples/BUILD.gn
+++ b/samples/BUILD.gn
@@ -8,6 +8,14 @@ group("samples") {
]
}
+config("pdfium_samples_config") {
+ defines = [
+ "PNG_PREFIX",
+ "PNGPREFIX_H",
+ "PNG_USE_READ_MACROS",
+ ]
+}
+
executable("pdfium_test") {
sources = [
"image_diff_png.cc",
@@ -21,6 +29,7 @@ executable("pdfium_test") {
"//v8",
"//v8/include",
]
+ configs += [ ":pdfium_samples_config" ]
}
executable("pdfium_diff") {
@@ -32,4 +41,5 @@ executable("pdfium_diff") {
deps = [
"//third_party/pdfium",
]
+ configs += [ ":pdfium_samples_config" ]
}