OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "app/gfx/gl/gl_implementation.h" |
| 6 #include "testing/gmock/include/gmock/gmock.h" |
| 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 |
| 9 int main(int argc, char** argv) { |
| 10 gfx::InitializeGLBindings(gfx::kGLImplementationMockGL); |
| 11 testing::InitGoogleMock(&argc, argv); |
| 12 return RUN_ALL_TESTS(); |
| 13 } |
OLD | NEW |