OLD | NEW |
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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 } | 332 } |
333 if (is_win) { | 333 if (is_win) { |
334 sources += [ "task_queue_win.cc" ] | 334 sources += [ "task_queue_win.cc" ] |
335 } | 335 } |
336 } | 336 } |
337 } | 337 } |
338 } | 338 } |
339 | 339 |
340 rtc_static_library("rtc_numerics") { | 340 rtc_static_library("rtc_numerics") { |
341 sources = [ | 341 sources = [ |
| 342 "numerics/cyclic_buffer.h", |
342 "numerics/exp_filter.cc", | 343 "numerics/exp_filter.cc", |
343 "numerics/exp_filter.h", | 344 "numerics/exp_filter.h", |
344 "numerics/percentile_filter.h", | 345 "numerics/percentile_filter.h", |
345 ] | 346 ] |
346 deps = [ | 347 deps = [ |
347 ":rtc_base_approved", | 348 ":rtc_base_approved", |
348 ] | 349 ] |
349 } | 350 } |
350 | 351 |
351 config("rtc_base_warnings_config") { | 352 config("rtc_base_warnings_config") { |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
856 ] | 857 ] |
857 if (!build_with_chromium && is_clang) { | 858 if (!build_with_chromium && is_clang) { |
858 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 859 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
859 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 860 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
860 } | 861 } |
861 } | 862 } |
862 | 863 |
863 rtc_source_set("rtc_numerics_unittests") { | 864 rtc_source_set("rtc_numerics_unittests") { |
864 testonly = true | 865 testonly = true |
865 sources = [ | 866 sources = [ |
| 867 "numerics/cyclic_buffer_unittest.cc", |
866 "numerics/exp_filter_unittest.cc", | 868 "numerics/exp_filter_unittest.cc", |
867 "numerics/percentile_filter_unittest.cc", | 869 "numerics/percentile_filter_unittest.cc", |
868 ] | 870 ] |
869 deps = [ | 871 deps = [ |
870 ":rtc_base_tests_main", | 872 ":rtc_base_tests_main", |
871 ":rtc_numerics", | 873 ":rtc_numerics", |
872 ] | 874 ] |
873 } | 875 } |
874 | 876 |
875 config("rtc_base_unittests_config") { | 877 config("rtc_base_unittests_config") { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
944 | 946 |
945 if (is_android) { | 947 if (is_android) { |
946 android_library("base_java") { | 948 android_library("base_java") { |
947 java_files = [ | 949 java_files = [ |
948 "java/src/org/webrtc/Logging.java", | 950 "java/src/org/webrtc/Logging.java", |
949 "java/src/org/webrtc/Size.java", | 951 "java/src/org/webrtc/Size.java", |
950 "java/src/org/webrtc/ThreadUtils.java", | 952 "java/src/org/webrtc/ThreadUtils.java", |
951 ] | 953 ] |
952 } | 954 } |
953 } | 955 } |
OLD | NEW |