| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 #include <stdio.h> | 7 #include <stdio.h> |
| 8 #include <string.h> |
| 8 #include <cmath> | 9 #include <cmath> |
| 9 #include <string> | 10 #include <string> |
| 10 #include <vector> | 11 #include <vector> |
| 11 | 12 |
| 12 #include <GLES2/gl2.h> | 13 #include <GLES2/gl2.h> |
| 13 #include <GLES2/gl2ext.h> | 14 #include <GLES2/gl2ext.h> |
| 14 #include <GLES2/gl2extchromium.h> | 15 #include <GLES2/gl2extchromium.h> |
| 15 | 16 |
| 16 #include "base/at_exit.h" | 17 #include "base/at_exit.h" |
| 17 #include "base/bind.h" | 18 #include "base/bind.h" |
| (...skipping 1984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2002 base::TestSuite* suite = new content::ContentTestSuite(argc, argv); | 2003 base::TestSuite* suite = new content::ContentTestSuite(argc, argv); |
| 2003 #if defined(OS_MACOSX) | 2004 #if defined(OS_MACOSX) |
| 2004 base::mac::ScopedNSAutoreleasePool pool; | 2005 base::mac::ScopedNSAutoreleasePool pool; |
| 2005 #endif | 2006 #endif |
| 2006 | 2007 |
| 2007 return base::LaunchUnitTestsSerially( | 2008 return base::LaunchUnitTestsSerially( |
| 2008 argc, | 2009 argc, |
| 2009 argv, | 2010 argv, |
| 2010 base::Bind(&RunHelper, base::Unretained(suite))); | 2011 base::Bind(&RunHelper, base::Unretained(suite))); |
| 2011 } | 2012 } |
| OLD | NEW |