diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-01-22 17:25:59 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-01-22 17:25:59 -0800 |
commit | af9be4fe77e1067f1cc265de8aae547f6358bc44 (patch) | |
tree | e078639934a554db6e8b033161fa791739215493 | |
parent | 36faa4ac92100936d108354a066218d1aae327a3 (diff) | |
download | pdfium-af9be4fe77e1067f1cc265de8aae547f6358bc44.tar.xz |
Add pdfium_embeddertests to BUILD.gn
This brings BUILD.gn into equivalence with pdfium.gyp.
Blocked on https://codereview.chromium.org/851283006/
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/871453004
-rw-r--r-- | BUILD.gn | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -810,3 +810,21 @@ test("pdfium_unittests") { configs -= [ "//build/config/compiler:chromium_code" ] configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] } + +test("pdfium_embeddertests") { + sources = [ + "fpdfsdk/src/fpdfdoc_embeddertest.cpp", + "fpdfsdk/src/fpdfview_embeddertest.cpp", + "testing/embedder_test.cpp", + "testing/embedder_test.h", + "testing/fx_string_testhelpers.cpp", + "testing/fx_string_testhelpers.h", + ] + deps = [ + "//testing/gtest", + ":pdfium" + ] + include_dirs = [ "." ] + configs -= [ "//build/config/compiler:chromium_code" ] + configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] +} |