Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: tests/skia_test.cpp

Issue 1036283002: Remove all code related to NaCl (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/PathOpsSkpClipTest.cpp ('k') | tools/CrashHandler.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "CrashHandler.h" 8 #include "CrashHandler.h"
9 #include "OverwriteLine.h" 9 #include "OverwriteLine.h"
10 #include "Resources.h" 10 #include "Resources.h"
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 SkDebugf( 222 SkDebugf(
223 "\nFinished %d tests, %d failures, %d skipped. " 223 "\nFinished %d tests, %d failures, %d skipped. "
224 "(%d internal tests)", 224 "(%d internal tests)",
225 toRun, status.failCount(), skipCount, status.testCount()); 225 toRun, status.failCount(), skipCount, status.testCount());
226 } 226 }
227 227
228 SkDebugf("\n"); 228 SkDebugf("\n");
229 return (status.failCount() == 0) ? 0 : 1; 229 return (status.failCount() == 0) ? 0 : 1;
230 } 230 }
231 231
232 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) 232 #if !defined(SK_BUILD_FOR_IOS)
233 int main(int argc, char** argv) { 233 int main(int argc, char** argv) {
234 SkCommandLineFlags::Parse(argc, argv); 234 SkCommandLineFlags::Parse(argc, argv);
235 return test_main(); 235 return test_main();
236 } 236 }
237 #endif 237 #endif
OLDNEW
« no previous file with comments | « tests/PathOpsSkpClipTest.cpp ('k') | tools/CrashHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698