| OLD | NEW |
| 1 // Copyright (c) 2015 PDFium Authors. All rights reserved. | 1 // Copyright 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 "testing/embedder_test.h" | 5 #include "testing/embedder_test.h" |
| 6 | 6 |
| 7 #include <limits.h> | 7 #include <limits.h> |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <utility> | 11 #include <utility> |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 } | 303 } |
| 304 | 304 |
| 305 // Can't use gtest-provided main since we need to stash the path to the | 305 // Can't use gtest-provided main since we need to stash the path to the |
| 306 // executable in order to find the external V8 binary data files. | 306 // executable in order to find the external V8 binary data files. |
| 307 int main(int argc, char** argv) { | 307 int main(int argc, char** argv) { |
| 308 g_exe_path_ = argv[0]; | 308 g_exe_path_ = argv[0]; |
| 309 testing::InitGoogleTest(&argc, argv); | 309 testing::InitGoogleTest(&argc, argv); |
| 310 testing::InitGoogleMock(&argc, argv); | 310 testing::InitGoogleMock(&argc, argv); |
| 311 return RUN_ALL_TESTS(); | 311 return RUN_ALL_TESTS(); |
| 312 } | 312 } |
| OLD | NEW |