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

Side by Side Diff: webrtc/BUILD.gn

Issue 2532523002: Move smoothing filter to common audio and exp_filter to base/analytics. (Closed)
Patch Set: typo Created 4 years 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/BUILD.gn » ('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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330.
10 10
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 "-Wno-sign-compare", 356 "-Wno-sign-compare",
357 "-Wno-unused-const-variable", 357 "-Wno-unused-const-variable",
358 ] 358 ]
359 } 359 }
360 } 360 }
361 361
362 rtc_test("rtc_unittests") { 362 rtc_test("rtc_unittests") {
363 testonly = true 363 testonly = true
364 sources = [ 364 sources = [
365 "api/fakemetricsobserver.cc", 365 "api/fakemetricsobserver.cc",
366 "base/analytics/exp_filter_unittest.cc",
366 "base/array_view_unittest.cc", 367 "base/array_view_unittest.cc",
367 "base/atomicops_unittest.cc", 368 "base/atomicops_unittest.cc",
368 "base/autodetectproxy_unittest.cc", 369 "base/autodetectproxy_unittest.cc",
369 "base/base64_unittest.cc", 370 "base/base64_unittest.cc",
370 "base/basictypes_unittest.cc", 371 "base/basictypes_unittest.cc",
371 "base/bind_unittest.cc", 372 "base/bind_unittest.cc",
372 "base/bitbuffer_unittest.cc", 373 "base/bitbuffer_unittest.cc",
373 "base/buffer_unittest.cc", 374 "base/buffer_unittest.cc",
374 "base/bufferqueue_unittest.cc", 375 "base/bufferqueue_unittest.cc",
375 "base/bytebuffer_unittest.cc", 376 "base/bytebuffer_unittest.cc",
376 "base/byteorder_unittest.cc", 377 "base/byteorder_unittest.cc",
377 "base/callback_unittest.cc", 378 "base/callback_unittest.cc",
378 "base/copyonwritebuffer_unittest.cc", 379 "base/copyonwritebuffer_unittest.cc",
379 "base/crc32_unittest.cc", 380 "base/crc32_unittest.cc",
380 "base/criticalsection_unittest.cc", 381 "base/criticalsection_unittest.cc",
381 "base/event_tracer_unittest.cc", 382 "base/event_tracer_unittest.cc",
382 "base/event_unittest.cc", 383 "base/event_unittest.cc",
383 "base/exp_filter_unittest.cc",
384 "base/file_unittest.cc", 384 "base/file_unittest.cc",
385 "base/filerotatingstream_unittest.cc", 385 "base/filerotatingstream_unittest.cc",
386 "base/fileutils_unittest.cc", 386 "base/fileutils_unittest.cc",
387 "base/function_view_unittest.cc", 387 "base/function_view_unittest.cc",
388 "base/helpers_unittest.cc", 388 "base/helpers_unittest.cc",
389 "base/httpbase_unittest.cc", 389 "base/httpbase_unittest.cc",
390 "base/httpcommon_unittest.cc", 390 "base/httpcommon_unittest.cc",
391 "base/httpserver_unittest.cc", 391 "base/httpserver_unittest.cc",
392 "base/ipaddress_unittest.cc", 392 "base/ipaddress_unittest.cc",
393 "base/logging_unittest.cc", 393 "base/logging_unittest.cc",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 } 501 }
502 502
503 configs += [ ":rtc_unittests_config" ] 503 configs += [ ":rtc_unittests_config" ]
504 504
505 if (!build_with_chromium && is_clang) { 505 if (!build_with_chromium && is_clang) {
506 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 506 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
507 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 507 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
508 } 508 }
509 509
510 deps = [ 510 deps = [
511 "base:rtc_analytics",
511 "base:rtc_base", 512 "base:rtc_base",
512 "base:rtc_base_tests_utils", 513 "base:rtc_base_tests_utils",
513 "base:rtc_task_queue", 514 "base:rtc_task_queue",
514 "p2p:libstunprober", 515 "p2p:libstunprober",
515 "p2p:rtc_p2p", 516 "p2p:rtc_p2p",
516 "//testing/gmock", 517 "//testing/gmock",
517 "//testing/gtest", 518 "//testing/gtest",
518 ] 519 ]
519 520
520 if (rtc_enable_protobuf) { 521 if (rtc_enable_protobuf) {
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 ] 709 ]
709 710
710 deps = [ 711 deps = [
711 "//base:base_java_test_support", 712 "//base:base_java_test_support",
712 "//webrtc/api:libjingle_peerconnection_java", 713 "//webrtc/api:libjingle_peerconnection_java",
713 "//webrtc/examples:AppRTCMobile_javalib", 714 "//webrtc/examples:AppRTCMobile_javalib",
714 ] 715 ]
715 } 716 }
716 } 717 }
717 } 718 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698