Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 #include "gtest/gtest.h" | 6 #include "gtest/gtest.h" |
| 7 #include "ppapi/cpp/module.h" | |
| 7 | 8 |
| 8 int main(int argc, char**argv) { | 9 int main(int argc, char**argv) { |
| 9 ::testing::InitGoogleTest(&argc, argv); | 10 ::testing::InitGoogleTest(&argc, argv); |
| 10 return RUN_ALL_TESTS(); | 11 return RUN_ALL_TESTS(); |
| 11 } | 12 } |
| 13 | |
| 14 namespace pp { | |
| 15 Module* CreateModule() { | |
|
Evgeniy Stepanov
2012/06/18 10:46:06
Let's avoid linking with ppapi altogether.
Move Ge
vissi
2012/06/18 10:56:44
Done.
| |
| 16 return NULL; | |
| 17 } | |
| 18 } // namespace pp | |
| 19 | |
| OLD | NEW |