| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 "task_queue_posix.cc", | 330 "task_queue_posix.cc", |
| 331 ] | 331 ] |
| 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_analytics") { | 340 rtc_static_library("rtc_numerics") { |
| 341 sources = [ | 341 sources = [ |
| 342 "analytics/exp_filter.cc", | 342 "numerics/exp_filter.cc", |
| 343 "analytics/exp_filter.h", | 343 "numerics/exp_filter.h", |
| 344 "analytics/percentile_filter.h", | 344 "numerics/percentile_filter.h", |
| 345 ] | 345 ] |
| 346 deps = [ | 346 deps = [ |
| 347 ":rtc_base_approved", | 347 ":rtc_base_approved", |
| 348 ] | 348 ] |
| 349 } | 349 } |
| 350 | 350 |
| 351 config("rtc_base_warnings_config") { | 351 config("rtc_base_warnings_config") { |
| 352 if (is_win && is_clang) { | 352 if (is_win && is_clang) { |
| 353 cflags = [ | 353 cflags = [ |
| 354 # Disable warnings failing when compiling with Clang on Windows. | 354 # Disable warnings failing when compiling with Clang on Windows. |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 deps = [ | 855 deps = [ |
| 856 ":rtc_base_tests_main", | 856 ":rtc_base_tests_main", |
| 857 ":rtc_task_queue", | 857 ":rtc_task_queue", |
| 858 ] | 858 ] |
| 859 if (!build_with_chromium && is_clang) { | 859 if (!build_with_chromium && is_clang) { |
| 860 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 860 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 861 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 861 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 862 } | 862 } |
| 863 } | 863 } |
| 864 | 864 |
| 865 rtc_source_set("rtc_analytics_unittests") { | 865 rtc_source_set("rtc_numerics_unittests") { |
| 866 testonly = true | 866 testonly = true |
| 867 sources = [ | 867 sources = [ |
| 868 "analytics/exp_filter_unittest.cc", | 868 "numerics/exp_filter_unittest.cc", |
| 869 "analytics/percentile_filter_unittest.cc", | 869 "numerics/percentile_filter_unittest.cc", |
| 870 ] | 870 ] |
| 871 deps = [ | 871 deps = [ |
| 872 ":rtc_analytics", | |
| 873 ":rtc_base_tests_main", | 872 ":rtc_base_tests_main", |
| 873 ":rtc_numerics", |
| 874 ] | 874 ] |
| 875 } | 875 } |
| 876 | 876 |
| 877 config("rtc_base_unittests_config") { | 877 config("rtc_base_unittests_config") { |
| 878 if (is_clang) { | 878 if (is_clang) { |
| 879 cflags = [ "-Wno-unused-const-variable" ] | 879 cflags = [ "-Wno-unused-const-variable" ] |
| 880 } | 880 } |
| 881 } | 881 } |
| 882 rtc_source_set("rtc_base_unittests") { | 882 rtc_source_set("rtc_base_unittests") { |
| 883 testonly = true | 883 testonly = true |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 "java/src/org/webrtc/Logging.java", | 950 "java/src/org/webrtc/Logging.java", |
| 951 "java/src/org/webrtc/Size.java", | 951 "java/src/org/webrtc/Size.java", |
| 952 "java/src/org/webrtc/ThreadUtils.java", | 952 "java/src/org/webrtc/ThreadUtils.java", |
| 953 ] | 953 ] |
| 954 | 954 |
| 955 deps = [ | 955 deps = [ |
| 956 "//base:base_java", | 956 "//base:base_java", |
| 957 ] | 957 ] |
| 958 } | 958 } |
| 959 } | 959 } |
| OLD | NEW |