diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-01-05 15:30:26 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-01-05 15:30:26 -0800 |
commit | a48ead9b7e3dc01f1bde83f69062eebd960edfdc (patch) | |
tree | 2fe9d6ca4d2693ac76e0138833f86992c01158cf /pdfium.gyp | |
parent | dd132d8d1e9a27673e5357a657db2b97dda9bcdb (diff) | |
download | pdfium-a48ead9b7e3dc01f1bde83f69062eebd960edfdc.tar.xz |
Re-enable pdfium_unittests.chromium/2271chromium/2270chromium/2269
In order for the standalone pdfium build to succeed,
DEPS is updated to pull in gtest, and a stub gtest.gyp
file is provided (which is unused under a chromium
checkout).
R=brucedawson@chromium.org, thakis@chromium.org
Review URL: https://codereview.chromium.org/835233002
Diffstat (limited to 'pdfium.gyp')
-rw-r--r-- | pdfium.gyp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pdfium.gyp b/pdfium.gyp index 15e7df0e4c..0ac04715e4 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -802,5 +802,20 @@ 'fpdfsdk/src/formfiller/FFL_Utils.cpp', ], }, + { + 'target_name': 'pdfium_unittests', + 'type': 'executable', + 'dependencies': [ + '<(DEPTH)/testing/gtest.gyp:gtest_main', + '<(DEPTH)/testing/gtest.gyp:gtest', + 'pdfium', + ], + 'include_dirs': [ + '<(DEPTH)' + ], + 'sources': [ + 'core/src/fxcrt/fx_basic_bstring_unittest.cpp', + ], + }, ], } |