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

Side by Side Diff: tools/flags/SkCommandLineFlags.cpp

Issue 1826793002: Google3 Android no longer has undefok. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 9 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 | no next file » | 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 "SkCommandLineFlags.h" 8 #include "SkCommandLineFlags.h"
9 #include "SkTDArray.h" 9 #include "SkTDArray.h"
10 #include "SkTSort.h" 10 #include "SkTSort.h"
11 11
12 #include <stdlib.h> 12 #include <stdlib.h>
13 13
14 #if defined(GOOGLE3) && (defined(SK_BUILD_FOR_ANDROID) || defined(SK_BUILD_FOR_I OS)) 14 #if defined(GOOGLE3) && defined(SK_BUILD_FOR_IOS)
15 // I don't know why, but this is defined by //base only for non-Linux. 15 // This is defined by //base only for iOS (I don't know why).
16 DECLARE_bool(undefok) 16 DECLARE_bool(undefok)
17 #else 17 #else
18 DEFINE_bool(undefok, false, "Silently ignore unknown flags instead of crashi ng."); 18 DEFINE_bool(undefok, false, "Silently ignore unknown flags instead of crashi ng.");
19 #endif 19 #endif
20 20
21 template <typename T> static void ignore_result(const T&) {} 21 template <typename T> static void ignore_result(const T&) {}
22 22
23 bool SkFlagInfo::CreateStringFlag(const char* name, const char* shortName, 23 bool SkFlagInfo::CreateStringFlag(const char* name, const char* shortName,
24 SkCommandLineFlags::StringArray* pStrings, 24 SkCommandLineFlags::StringArray* pStrings,
25 const char* defaultValue, const char* helpStri ng, 25 const char* defaultValue, const char* helpStri ng,
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 } 399 }
400 400
401 } // namespace 401 } // namespace
402 402
403 bool SkCommandLineFlags::ShouldSkip(const SkTDArray<const char*>& strings, const char* name) { 403 bool SkCommandLineFlags::ShouldSkip(const SkTDArray<const char*>& strings, const char* name) {
404 return ShouldSkipImpl(strings, name); 404 return ShouldSkipImpl(strings, name);
405 } 405 }
406 bool SkCommandLineFlags::ShouldSkip(const StringArray& strings, const char* name ) { 406 bool SkCommandLineFlags::ShouldSkip(const StringArray& strings, const char* name ) {
407 return ShouldSkipImpl(strings, name); 407 return ShouldSkipImpl(strings, name);
408 } 408 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698