diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-03-03 09:49:29 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-03-03 09:49:29 -0800 |
commit | 2785fb46249df5229e057917e54fe161bb0e3517 (patch) | |
tree | 1cd2074dbcc4d0d81efb4fde3131002306084f22 /pdfium.gyp | |
parent | 49ccaeba9e16a04898ded5312e2f8a0178875410 (diff) | |
download | pdfium-2785fb46249df5229e057917e54fe161bb0e3517.tar.xz |
Fix pdfium_embeddertests on XFA.
Required to avoid a DCHECK() due to recent changes
in V8 initialization. This mirrors the changes introduced
at b045ed21 to pdfium_test.cpp in pdfium_embeddertest.cpp
R=jam@chromium.org
Review URL: https://codereview.chromium.org/969243002
Diffstat (limited to 'pdfium.gyp')
-rw-r--r-- | pdfium.gyp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pdfium.gyp b/pdfium.gyp index daf261a422..b6e68aa377 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -934,10 +934,13 @@ 'dependencies': [ '<(DEPTH)/testing/gmock.gyp:gmock', '<(DEPTH)/testing/gtest.gyp:gtest', + '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform', 'pdfium', ], 'include_dirs': [ - '<(DEPTH)' + '<(DEPTH)', + '<(DEPTH)/v8', + '<(DEPTH)/v8/include', ], 'sources': [ 'fpdfsdk/src/fpdf_dataavail_embeddertest.cpp', |