OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium 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 <stdint.h> | 5 #include <stdint.h> |
| 6 #include <string.h> |
6 | 7 |
7 #include <string> | 8 #include <string> |
8 | 9 |
9 // This has to be included first. | 10 // This has to be included first. |
10 // See http://code.google.com/p/googletest/issues/detail?id=371 | 11 // See http://code.google.com/p/googletest/issues/detail?id=371 |
11 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
12 | 13 |
13 #include "base/at_exit.h" | 14 #include "base/at_exit.h" |
14 #include "base/bind.h" | 15 #include "base/bind.h" |
15 #include "base/files/file_util.h" | 16 #include "base/files/file_util.h" |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 132 |
132 } // namespace | 133 } // namespace |
133 } // namespace content | 134 } // namespace content |
134 | 135 |
135 int main(int argc, char** argv) { | 136 int main(int argc, char** argv) { |
136 testing::InitGoogleTest(&argc, argv); | 137 testing::InitGoogleTest(&argc, argv); |
137 base::AtExitManager exit_manager; | 138 base::AtExitManager exit_manager; |
138 content::VaapiWrapper::PreSandboxInitialization(); | 139 content::VaapiWrapper::PreSandboxInitialization(); |
139 return RUN_ALL_TESTS(); | 140 return RUN_ALL_TESTS(); |
140 } | 141 } |
OLD | NEW |