OLD | NEW |
1 // Copyright (c) 2015 PDFium Authors. All rights reserved. | 1 // Copyright (c) 2015 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "embedder_test.h" | 5 #include "embedder_test.h" |
6 | 6 |
7 #include <limits.h> | 7 #include <limits.h> |
8 #include <stdio.h> | 8 #include <stdio.h> |
9 #include <stdlib.h> | 9 #include <stdlib.h> |
10 #include <string.h> | 10 #include <string.h> |
11 | 11 |
12 #include <list> | 12 #include <list> |
13 #include <string> | 13 #include <string> |
14 #include <utility> | 14 #include <utility> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "../fpdfsdk/include/fpdftext.h" | |
18 #include "../fpdfsdk/include/fpdfview.h" | |
19 #include "../core/include/fxcrt/fx_system.h" | 17 #include "../core/include/fxcrt/fx_system.h" |
| 18 #include "../public/fpdf_text.h" |
| 19 #include "../public/fpdfview.h" |
20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
21 #include "v8/include/v8.h" | 21 #include "v8/include/v8.h" |
22 | 22 |
23 #ifdef _WIN32 | 23 #ifdef _WIN32 |
24 #define snprintf _snprintf | 24 #define snprintf _snprintf |
25 #define PATH_SEPARATOR '\\' | 25 #define PATH_SEPARATOR '\\' |
26 #else | 26 #else |
27 #define PATH_SEPARATOR '/' | 27 #define PATH_SEPARATOR '/' |
28 #endif | 28 #endif |
29 | 29 |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 } | 337 } |
338 | 338 |
339 // Can't use gtest-provided main since we need to stash the path to the | 339 // Can't use gtest-provided main since we need to stash the path to the |
340 // executable in order to find the external V8 binary data files. | 340 // executable in order to find the external V8 binary data files. |
341 int main(int argc, char** argv) { | 341 int main(int argc, char** argv) { |
342 g_exe_path_ = argv[0]; | 342 g_exe_path_ = argv[0]; |
343 testing::InitGoogleTest(&argc, argv); | 343 testing::InitGoogleTest(&argc, argv); |
344 testing::InitGoogleMock(&argc, argv); | 344 testing::InitGoogleMock(&argc, argv); |
345 return RUN_ALL_TESTS(); | 345 return RUN_ALL_TESTS(); |
346 } | 346 } |
OLD | NEW |