| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 sources += [ "task_queue_win.cc" ] | 333 sources += [ "task_queue_win.cc" ] |
| 334 } | 334 } |
| 335 } | 335 } |
| 336 } | 336 } |
| 337 } | 337 } |
| 338 | 338 |
| 339 rtc_static_library("rtc_analytics") { | 339 rtc_static_library("rtc_analytics") { |
| 340 sources = [ | 340 sources = [ |
| 341 "analytics/exp_filter.cc", | 341 "analytics/exp_filter.cc", |
| 342 "analytics/exp_filter.h", | 342 "analytics/exp_filter.h", |
| 343 "analytics/percentile_filter.h", |
| 344 ] |
| 345 deps = [ |
| 346 ":rtc_base_approved", |
| 343 ] | 347 ] |
| 344 } | 348 } |
| 345 | 349 |
| 346 config("rtc_base_warnings_config") { | 350 config("rtc_base_warnings_config") { |
| 347 if (is_win && is_clang) { | 351 if (is_win && is_clang) { |
| 348 cflags = [ | 352 cflags = [ |
| 349 # Disable warnings failing when compiling with Clang on Windows. | 353 # Disable warnings failing when compiling with Clang on Windows. |
| 350 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 | 354 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 |
| 351 "-Wno-sign-compare", | 355 "-Wno-sign-compare", |
| 352 "-Wno-missing-braces", | 356 "-Wno-missing-braces", |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 "java/src/org/webrtc/Logging.java", | 776 "java/src/org/webrtc/Logging.java", |
| 773 "java/src/org/webrtc/Size.java", | 777 "java/src/org/webrtc/Size.java", |
| 774 "java/src/org/webrtc/ThreadUtils.java", | 778 "java/src/org/webrtc/ThreadUtils.java", |
| 775 ] | 779 ] |
| 776 | 780 |
| 777 deps = [ | 781 deps = [ |
| 778 "//base:base_java", | 782 "//base:base_java", |
| 779 ] | 783 ] |
| 780 } | 784 } |
| 781 } | 785 } |
| OLD | NEW |