diff options
author | brucedawson <brucedawson@chromium.org> | 2016-04-27 15:28:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-27 15:28:41 -0700 |
commit | 15bfe1bd8b28f9654dcea4af51305e3559a78cd8 (patch) | |
tree | 7adb58d165cde244ec80e409d82f3ae7cbc3fc85 /samples/BUILD.gn | |
parent | b174aa37b6a99461dc581c63a93a1d706705dd16 (diff) | |
download | pdfium-15bfe1bd8b28f9654dcea4af51305e3559a78cd8.tar.xz |
Adding default_exe_manifest to two binaries
gn builds are missing Windows manifests for pdfium_diff.exe and
pdfium_test.exe. These manifests are necessary in order to get
predictable behavior on Windows.
BUG=602505
Review-Url: https://codereview.chromium.org/1927593003
Diffstat (limited to 'samples/BUILD.gn')
-rw-r--r-- | samples/BUILD.gn | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/BUILD.gn b/samples/BUILD.gn index 9e18289e46..3fdb97e3e2 100644 --- a/samples/BUILD.gn +++ b/samples/BUILD.gn @@ -42,6 +42,7 @@ executable("pdfium_test") { "../:pdfium", "../:test_support", "//build/config/sanitizers:deps", + "//build/win:default_exe_manifest", # Regardless of whether the library ships against system freetype, # always link this binary against the bundled one for consistency @@ -75,6 +76,7 @@ executable("pdfium_diff") { deps = [ "../:pdfium", "//build/config/sanitizers:deps", + "//build/win:default_exe_manifest", ] if (!pdf_enable_xfa) { deps += [ "../third_party:fx_lpng" ] |