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

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

Issue 2979833002: Add a histogram metric tracking for how long audio RTP packets are sent (Closed)
Patch Set: Created 3 years, 5 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
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "stringencode.h", 170 "stringencode.h",
171 "stringize_macros.h", 171 "stringize_macros.h",
172 "stringutils.cc", 172 "stringutils.cc",
173 "stringutils.h", 173 "stringutils.h",
174 "swap_queue.h", 174 "swap_queue.h",
175 "template_util.h", 175 "template_util.h",
176 "thread_annotations.h", 176 "thread_annotations.h",
177 "thread_checker.h", 177 "thread_checker.h",
178 "thread_checker_impl.cc", 178 "thread_checker_impl.cc",
179 "thread_checker_impl.h", 179 "thread_checker_impl.h",
180 "time_interval.cc",
181 "time_interval.h",
180 "timestampaligner.cc", 182 "timestampaligner.cc",
181 "timestampaligner.h", 183 "timestampaligner.h",
182 "timeutils.cc", 184 "timeutils.cc",
183 "timeutils.h", 185 "timeutils.h",
184 "trace_event.h", 186 "trace_event.h",
185 "type_traits.h", 187 "type_traits.h",
186 ] 188 ]
187 189
188 deps += [ "..:webrtc_common" ] 190 deps += [ "..:webrtc_common" ]
189 191
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 "refcountedobject_unittest.cc", 837 "refcountedobject_unittest.cc",
836 "safe_compare_unittest.cc", 838 "safe_compare_unittest.cc",
837 "safe_minmax_unittest.cc", 839 "safe_minmax_unittest.cc",
838 "string_to_number_unittest.cc", 840 "string_to_number_unittest.cc",
839 "stringencode_unittest.cc", 841 "stringencode_unittest.cc",
840 "stringize_macros_unittest.cc", 842 "stringize_macros_unittest.cc",
841 "stringutils_unittest.cc", 843 "stringutils_unittest.cc",
842 "swap_queue_unittest.cc", 844 "swap_queue_unittest.cc",
843 "thread_annotations_unittest.cc", 845 "thread_annotations_unittest.cc",
844 "thread_checker_unittest.cc", 846 "thread_checker_unittest.cc",
847 "time_interval_unittest.cc",
845 "timestampaligner_unittest.cc", 848 "timestampaligner_unittest.cc",
846 "timeutils_unittest.cc", 849 "timeutils_unittest.cc",
847 "virtualsocket_unittest.cc", 850 "virtualsocket_unittest.cc",
848 ] 851 ]
849 deps = [ 852 deps = [
850 ":rtc_base", 853 ":rtc_base",
851 ":rtc_base_approved", 854 ":rtc_base_approved",
852 ":rtc_base_tests_main", 855 ":rtc_base_tests_main",
853 ":rtc_base_tests_utils", 856 ":rtc_base_tests_utils",
854 ":rtc_task_queue", 857 ":rtc_task_queue",
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 if (is_android) { 1034 if (is_android) {
1032 android_library("base_java") { 1035 android_library("base_java") {
1033 java_files = [ 1036 java_files = [
1034 "java/src/org/webrtc/ContextUtils.java", 1037 "java/src/org/webrtc/ContextUtils.java",
1035 "java/src/org/webrtc/Logging.java", 1038 "java/src/org/webrtc/Logging.java",
1036 "java/src/org/webrtc/Size.java", 1039 "java/src/org/webrtc/Size.java",
1037 "java/src/org/webrtc/ThreadUtils.java", 1040 "java/src/org/webrtc/ThreadUtils.java",
1038 ] 1041 ]
1039 } 1042 }
1040 } 1043 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698