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

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

Issue 2810483002: Add SafeMin() and SafeMax(), which accept args of different types (Closed)
Patch Set: trigger error earlier Created 3 years, 7 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/safe_minmax.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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "rate_limiter.h", 158 "rate_limiter.h",
159 "rate_statistics.cc", 159 "rate_statistics.cc",
160 "rate_statistics.h", 160 "rate_statistics.h",
161 "ratetracker.cc", 161 "ratetracker.cc",
162 "ratetracker.h", 162 "ratetracker.h",
163 "refcount.h", 163 "refcount.h",
164 "refcountedobject.h", 164 "refcountedobject.h",
165 "safe_compare.h", 165 "safe_compare.h",
166 "safe_conversions.h", 166 "safe_conversions.h",
167 "safe_conversions_impl.h", 167 "safe_conversions_impl.h",
168 "safe_minmax.h",
168 "sanitizer.h", 169 "sanitizer.h",
169 "scoped_ref_ptr.h", 170 "scoped_ref_ptr.h",
170 "string_to_number.cc", 171 "string_to_number.cc",
171 "string_to_number.h", 172 "string_to_number.h",
172 "stringencode.cc", 173 "stringencode.cc",
173 "stringencode.h", 174 "stringencode.h",
174 "stringutils.cc", 175 "stringutils.cc",
175 "stringutils.h", 176 "stringutils.h",
176 "swap_queue.h", 177 "swap_queue.h",
177 "template_util.h", 178 "template_util.h",
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 "onetimeevent_unittest.cc", 787 "onetimeevent_unittest.cc",
787 "optional_unittest.cc", 788 "optional_unittest.cc",
788 "pathutils_unittest.cc", 789 "pathutils_unittest.cc",
789 "platform_thread_unittest.cc", 790 "platform_thread_unittest.cc",
790 "random_unittest.cc", 791 "random_unittest.cc",
791 "rate_limiter_unittest.cc", 792 "rate_limiter_unittest.cc",
792 "rate_statistics_unittest.cc", 793 "rate_statistics_unittest.cc",
793 "ratetracker_unittest.cc", 794 "ratetracker_unittest.cc",
794 "refcountedobject_unittest.cc", 795 "refcountedobject_unittest.cc",
795 "safe_compare_unittest.cc", 796 "safe_compare_unittest.cc",
797 "safe_minmax_unittest.cc",
796 "string_to_number_unittest.cc", 798 "string_to_number_unittest.cc",
797 "stringencode_unittest.cc", 799 "stringencode_unittest.cc",
798 "stringutils_unittest.cc", 800 "stringutils_unittest.cc",
799 "swap_queue_unittest.cc", 801 "swap_queue_unittest.cc",
800 "thread_annotations_unittest.cc", 802 "thread_annotations_unittest.cc",
801 "thread_checker_unittest.cc", 803 "thread_checker_unittest.cc",
802 "timestampaligner_unittest.cc", 804 "timestampaligner_unittest.cc",
803 "timeutils_unittest.cc", 805 "timeutils_unittest.cc",
804 ] 806 ]
805 deps = [ 807 deps = [
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 913
912 if (is_android) { 914 if (is_android) {
913 android_library("base_java") { 915 android_library("base_java") {
914 java_files = [ 916 java_files = [
915 "java/src/org/webrtc/Logging.java", 917 "java/src/org/webrtc/Logging.java",
916 "java/src/org/webrtc/Size.java", 918 "java/src/org/webrtc/Size.java",
917 "java/src/org/webrtc/ThreadUtils.java", 919 "java/src/org/webrtc/ThreadUtils.java",
918 ] 920 ]
919 } 921 }
920 } 922 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/safe_minmax.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698