diff options
Diffstat (limited to 'samples')
-rw-r--r-- | samples/image_diff.cc | 4 | ||||
-rw-r--r-- | samples/image_diff_png.cc | 6 | ||||
-rw-r--r-- | samples/pdfium_test.cc | 2 | ||||
-rw-r--r-- | samples/samples.gyp | 1 |
4 files changed, 7 insertions, 6 deletions
diff --git a/samples/image_diff.cc b/samples/image_diff.cc index f10bd31085..88a3956d09 100644 --- a/samples/image_diff.cc +++ b/samples/image_diff.cc @@ -19,9 +19,9 @@ #include <string> #include <vector> -#include "../third_party/base/logging.h" -#include "../third_party/base/numerics/safe_conversions.h" #include "image_diff_png.h" +#include "third_party/base/logging.h" +#include "third_party/base/numerics/safe_conversions.h" #if defined(OS_WIN) #include <windows.h> diff --git a/samples/image_diff_png.cc b/samples/image_diff_png.cc index a8ca925a3a..992617d5e5 100644 --- a/samples/image_diff_png.cc +++ b/samples/image_diff_png.cc @@ -16,9 +16,9 @@ #include <string> -#include "../third_party/base/logging.h" -#include "../third_party/lpng_v163/png.h" -#include "../third_party/zlib_v128/zlib.h" +#include "third_party/base/logging.h" +#include "third_party/lpng_v163/png.h" +#include "third_party/zlib_v128/zlib.h" namespace image_diff_png { diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index 4ccf1a7721..190286a34e 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -25,7 +25,7 @@ #ifdef PDF_ENABLE_V8 #include "v8/include/libplatform/libplatform.h" #include "v8/include/v8.h" -#endif +#endif // PDF_ENABLE_V8 #ifdef _WIN32 #define snprintf _snprintf diff --git a/samples/samples.gyp b/samples/samples.gyp index 97181ba208..ff7b05823c 100644 --- a/samples/samples.gyp +++ b/samples/samples.gyp @@ -15,6 +15,7 @@ 'include_dirs': [ # This is implicit in GN. '<(DEPTH)', + '..', ], 'conditions': [ ['pdf_enable_v8==1', { |