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

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2696003004: Added integer parsing functions in base/string_to_number.h (Closed)
Patch Set: Added more debug printing to invalid inputs tests. Created 3 years, 10 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 | webrtc/base/string_to_number.h » ('j') | webrtc/base/string_to_number.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/crypto.gni") 9 import("//build/config/crypto.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "rate_statistics.h", 148 "rate_statistics.h",
149 "ratetracker.cc", 149 "ratetracker.cc",
150 "ratetracker.h", 150 "ratetracker.h",
151 "refcount.h", 151 "refcount.h",
152 "refcountedobject.h", 152 "refcountedobject.h",
153 "safe_compare.h", 153 "safe_compare.h",
154 "safe_conversions.h", 154 "safe_conversions.h",
155 "safe_conversions_impl.h", 155 "safe_conversions_impl.h",
156 "sanitizer.h", 156 "sanitizer.h",
157 "scoped_ref_ptr.h", 157 "scoped_ref_ptr.h",
158 "string_to_number.h",
158 "stringencode.cc", 159 "stringencode.cc",
159 "stringencode.h", 160 "stringencode.h",
160 "stringutils.cc", 161 "stringutils.cc",
161 "stringutils.h", 162 "stringutils.h",
162 "swap_queue.h", 163 "swap_queue.h",
163 "template_util.h", 164 "template_util.h",
164 "thread_annotations.h", 165 "thread_annotations.h",
165 "thread_checker.h", 166 "thread_checker.h",
166 "thread_checker_impl.cc", 167 "thread_checker_impl.cc",
167 "thread_checker_impl.h", 168 "thread_checker_impl.h",
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 "onetimeevent_unittest.cc", 775 "onetimeevent_unittest.cc",
775 "optional_unittest.cc", 776 "optional_unittest.cc",
776 "pathutils_unittest.cc", 777 "pathutils_unittest.cc",
777 "platform_thread_unittest.cc", 778 "platform_thread_unittest.cc",
778 "random_unittest.cc", 779 "random_unittest.cc",
779 "rate_limiter_unittest.cc", 780 "rate_limiter_unittest.cc",
780 "rate_statistics_unittest.cc", 781 "rate_statistics_unittest.cc",
781 "ratetracker_unittest.cc", 782 "ratetracker_unittest.cc",
782 "refcountedobject_unittest.cc", 783 "refcountedobject_unittest.cc",
783 "safe_compare_unittest.cc", 784 "safe_compare_unittest.cc",
785 "string_to_number_unittest.cc",
784 "stringencode_unittest.cc", 786 "stringencode_unittest.cc",
785 "stringutils_unittest.cc", 787 "stringutils_unittest.cc",
786 "swap_queue_unittest.cc", 788 "swap_queue_unittest.cc",
787 "thread_annotations_unittest.cc", 789 "thread_annotations_unittest.cc",
788 "thread_checker_unittest.cc", 790 "thread_checker_unittest.cc",
789 "timestampaligner_unittest.cc", 791 "timestampaligner_unittest.cc",
790 "timeutils_unittest.cc", 792 "timeutils_unittest.cc",
791 ] 793 ]
792 deps = [ 794 deps = [
793 ":rtc_base_approved", 795 ":rtc_base_approved",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 900
899 if (is_android) { 901 if (is_android) {
900 android_library("base_java") { 902 android_library("base_java") {
901 java_files = [ 903 java_files = [
902 "java/src/org/webrtc/Logging.java", 904 "java/src/org/webrtc/Logging.java",
903 "java/src/org/webrtc/Size.java", 905 "java/src/org/webrtc/Size.java",
904 "java/src/org/webrtc/ThreadUtils.java", 906 "java/src/org/webrtc/ThreadUtils.java",
905 ] 907 ]
906 } 908 }
907 } 909 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/string_to_number.h » ('j') | webrtc/base/string_to_number.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698