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

Side by Side Diff: dm/DM.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 | « no previous file | gyp/SampleApp.gyp » ('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 2013 Google Inc. 2 * Copyright 2013 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 "DMJsonWriter.h" 9 #include "DMJsonWriter.h"
10 #include "DMSrcSink.h" 10 #include "DMSrcSink.h"
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 SkDebugf("%d failures\n", gFailures.count()); 650 SkDebugf("%d failures\n", gFailures.count());
651 return 1; 651 return 1;
652 } 652 }
653 if (gPending > 0) { 653 if (gPending > 0) {
654 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n"); 654 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
655 return 1; 655 return 1;
656 } 656 }
657 return 0; 657 return 0;
658 } 658 }
659 659
660 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) 660 #if !defined(SK_BUILD_FOR_IOS)
661 int main(int argc, char** argv) { 661 int main(int argc, char** argv) {
662 SkCommandLineFlags::Parse(argc, argv); 662 SkCommandLineFlags::Parse(argc, argv);
663 return dm_main(); 663 return dm_main();
664 } 664 }
665 #endif 665 #endif
OLDNEW
« no previous file with comments | « no previous file | gyp/SampleApp.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698