| 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 # 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 # TODO(mbonadei): Remove (bugs.webrtc.org/7745) | 340 # TODO(mbonadei): Remove (bugs.webrtc.org/7745) |
| 341 # Enabling GN check triggers cyclic dependency error: | 341 # Enabling GN check triggers cyclic dependency error: |
| 342 # :webrtc_common -> | 342 # :webrtc_common -> |
| 343 # api:video_frame_api -> | 343 # api:video_frame_api -> |
| 344 # system_wrappers:system_wrappers -> | 344 # system_wrappers:system_wrappers -> |
| 345 # webrtc_common | 345 # webrtc_common |
| 346 check_includes = false | 346 check_includes = false |
| 347 sources = [ | 347 sources = [ |
| 348 "common_types.cc", | 348 "common_types.cc", |
| 349 "common_types.h", | 349 "common_types.h", |
| 350 "config.cc", | |
| 351 "config.h", | 350 "config.h", |
| 352 "typedefs.h", | 351 "typedefs.h", |
| 353 ] | 352 ] |
| 354 | 353 |
| 355 if (!build_with_chromium && is_clang) { | 354 if (!build_with_chromium && is_clang) { |
| 356 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 355 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 357 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 356 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 358 } | 357 } |
| 359 } | 358 } |
| 360 | 359 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 377 if (is_clang) { | 376 if (is_clang) { |
| 378 cflags = [ | 377 cflags = [ |
| 379 "-Wno-sign-compare", | 378 "-Wno-sign-compare", |
| 380 "-Wno-unused-const-variable", | 379 "-Wno-unused-const-variable", |
| 381 ] | 380 ] |
| 382 } | 381 } |
| 383 } | 382 } |
| 384 | 383 |
| 385 rtc_test("rtc_unittests") { | 384 rtc_test("rtc_unittests") { |
| 386 testonly = true | 385 testonly = true |
| 387 sources = [ | |
| 388 "config_unittest.cc", | |
| 389 ] | |
| 390 | 386 |
| 391 deps = [ | 387 deps = [ |
| 392 ":webrtc_common", | 388 ":webrtc_common", |
| 393 "api:rtc_api_unittests", | 389 "api:rtc_api_unittests", |
| 394 "api/audio_codecs/test:audio_codecs_api_unittests", | 390 "api/audio_codecs/test:audio_codecs_api_unittests", |
| 395 "p2p:libstunprober_unittests", | 391 "p2p:libstunprober_unittests", |
| 396 "p2p:rtc_p2p_unittests", | 392 "p2p:rtc_p2p_unittests", |
| 397 "rtc_base:rtc_base_approved_unittests", | 393 "rtc_base:rtc_base_approved_unittests", |
| 398 "rtc_base:rtc_base_tests_main", | 394 "rtc_base:rtc_base_tests_main", |
| 399 "rtc_base:rtc_base_tests_utils", | 395 "rtc_base:rtc_base_tests_utils", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 ] | 531 ] |
| 536 | 532 |
| 537 deps = [ | 533 deps = [ |
| 538 "examples:AppRTCMobile_javalib", | 534 "examples:AppRTCMobile_javalib", |
| 539 "sdk/android:libjingle_peerconnection_java", | 535 "sdk/android:libjingle_peerconnection_java", |
| 540 "//base:base_java_test_support", | 536 "//base:base_java_test_support", |
| 541 ] | 537 ] |
| 542 } | 538 } |
| 543 } | 539 } |
| 544 } | 540 } |
| OLD | NEW |