| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 "common_types.h", | 363 "common_types.h", |
| 364 "config.cc", | 364 "config.cc", |
| 365 "config.h", | 365 "config.h", |
| 366 "typedefs.h", | 366 "typedefs.h", |
| 367 ] | 367 ] |
| 368 | 368 |
| 369 if (!build_with_chromium && is_clang) { | 369 if (!build_with_chromium && is_clang) { |
| 370 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 370 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 371 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 371 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 372 } | 372 } |
| 373 deps = [ | |
| 374 "base:rtc_base_approved", | |
| 375 ] | |
| 376 } | 373 } |
| 377 | 374 |
| 378 if (use_libfuzzer || use_drfuzz || use_afl) { | 375 if (use_libfuzzer || use_drfuzz || use_afl) { |
| 379 # This target is only here for gn to discover fuzzer build targets under | 376 # This target is only here for gn to discover fuzzer build targets under |
| 380 # webrtc/test/fuzzers/. | 377 # webrtc/test/fuzzers/. |
| 381 group("webrtc_fuzzers_dummy") { | 378 group("webrtc_fuzzers_dummy") { |
| 382 testonly = true | 379 testonly = true |
| 383 deps = [ | 380 deps = [ |
| 384 "test/fuzzers:webrtc_fuzzer_main", | 381 "test/fuzzers:webrtc_fuzzer_main", |
| 385 ] | 382 ] |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 ] | 540 ] |
| 544 | 541 |
| 545 deps = [ | 542 deps = [ |
| 546 "//base:base_java_test_support", | 543 "//base:base_java_test_support", |
| 547 "//webrtc/examples:AppRTCMobile_javalib", | 544 "//webrtc/examples:AppRTCMobile_javalib", |
| 548 "//webrtc/sdk/android:libjingle_peerconnection_java", | 545 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 549 ] | 546 ] |
| 550 } | 547 } |
| 551 } | 548 } |
| 552 } | 549 } |
| OLD | NEW |