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

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

Issue 2696003004: Added integer parsing functions in base/string_to_number.h (Closed)
Patch Set: Addressed comments. Created 3 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 | webrtc/base/string_to_number.h » ('j') | no next file with comments »
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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 "rate_statistics.h", 149 "rate_statistics.h",
150 "ratetracker.cc", 150 "ratetracker.cc",
151 "ratetracker.h", 151 "ratetracker.h",
152 "refcount.h", 152 "refcount.h",
153 "refcountedobject.h", 153 "refcountedobject.h",
154 "safe_compare.h", 154 "safe_compare.h",
155 "safe_conversions.h", 155 "safe_conversions.h",
156 "safe_conversions_impl.h", 156 "safe_conversions_impl.h",
157 "sanitizer.h", 157 "sanitizer.h",
158 "scoped_ref_ptr.h", 158 "scoped_ref_ptr.h",
159 "string_to_number.cc",
160 "string_to_number.h",
159 "stringencode.cc", 161 "stringencode.cc",
160 "stringencode.h", 162 "stringencode.h",
161 "stringutils.cc", 163 "stringutils.cc",
162 "stringutils.h", 164 "stringutils.h",
163 "swap_queue.h", 165 "swap_queue.h",
164 "template_util.h", 166 "template_util.h",
165 "thread_annotations.h", 167 "thread_annotations.h",
166 "thread_checker.h", 168 "thread_checker.h",
167 "thread_checker_impl.cc", 169 "thread_checker_impl.cc",
168 "thread_checker_impl.h", 170 "thread_checker_impl.h",
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 "onetimeevent_unittest.cc", 775 "onetimeevent_unittest.cc",
774 "optional_unittest.cc", 776 "optional_unittest.cc",
775 "pathutils_unittest.cc", 777 "pathutils_unittest.cc",
776 "platform_thread_unittest.cc", 778 "platform_thread_unittest.cc",
777 "random_unittest.cc", 779 "random_unittest.cc",
778 "rate_limiter_unittest.cc", 780 "rate_limiter_unittest.cc",
779 "rate_statistics_unittest.cc", 781 "rate_statistics_unittest.cc",
780 "ratetracker_unittest.cc", 782 "ratetracker_unittest.cc",
781 "refcountedobject_unittest.cc", 783 "refcountedobject_unittest.cc",
782 "safe_compare_unittest.cc", 784 "safe_compare_unittest.cc",
785 "string_to_number_unittest.cc",
783 "stringencode_unittest.cc", 786 "stringencode_unittest.cc",
784 "stringutils_unittest.cc", 787 "stringutils_unittest.cc",
785 "swap_queue_unittest.cc", 788 "swap_queue_unittest.cc",
786 "thread_annotations_unittest.cc", 789 "thread_annotations_unittest.cc",
787 "thread_checker_unittest.cc", 790 "thread_checker_unittest.cc",
788 "timestampaligner_unittest.cc", 791 "timestampaligner_unittest.cc",
789 "timeutils_unittest.cc", 792 "timeutils_unittest.cc",
790 ] 793 ]
791 deps = [ 794 deps = [
792 ":rtc_base_approved", 795 ":rtc_base_approved",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 900
898 if (is_android) { 901 if (is_android) {
899 android_library("base_java") { 902 android_library("base_java") {
900 java_files = [ 903 java_files = [
901 "java/src/org/webrtc/Logging.java", 904 "java/src/org/webrtc/Logging.java",
902 "java/src/org/webrtc/Size.java", 905 "java/src/org/webrtc/Size.java",
903 "java/src/org/webrtc/ThreadUtils.java", 906 "java/src/org/webrtc/ThreadUtils.java",
904 ] 907 ]
905 } 908 }
906 } 909 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/string_to_number.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698