diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-01-12 14:52:35 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-01-12 14:52:35 -0800 |
commit | 04ddadebc55ac0e6596a1b54c0d38f828c6162a4 (patch) | |
tree | c7d482a68a4a68bfadd81d35d82a280d7e7981ed /xfa/src | |
parent | a902979f7c6a39fbdd8e9fc1b2ce00553b655eeb (diff) | |
download | pdfium-04ddadebc55ac0e6596a1b54c0d38f828c6162a4.tar.xz |
Fix include paths for pdfium_unittests under chromium checkout.
Here, testing/gtest and testing/some-pdfium-stuff will be different
directories, since we will use the gtest at top-level. For standalone,
they happen to be the same.
TBR=bo_xu@foxitsoftware.com
Review URL: https://codereview.chromium.org/852493002
Diffstat (limited to 'xfa/src')
-rw-r--r-- | xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp b/xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp index 33c875366c..01833cf649 100644 --- a/xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp @@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "core/include/fxcrt/fx_basic.h" -#include "BC_PDF417HighLevelEncoder.h" #include "testing/gtest/include/gtest/gtest.h" -#include "testing/fx_string_testhelpers.h" +#include "../../../../core/include/fxcrt/fx_basic.h" +#include "../../../../testing/fx_string_testhelpers.h" +#include "BC_PDF417HighLevelEncoder.h" TEST(PDF417HighLevelEncoder, EncodeHighLevel) { // TODO(tsepez): implement test cases. |