| OLD | NEW |
| 1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2017 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 testonly = true | 51 testonly = true |
| 52 | 52 |
| 53 sources = [ | 53 sources = [ |
| 54 "ortcfactory_integrationtest.cc", | 54 "ortcfactory_integrationtest.cc", |
| 55 "ortcfactory_unittest.cc", | 55 "ortcfactory_unittest.cc", |
| 56 "ortcrtpreceiver_unittest.cc", | 56 "ortcrtpreceiver_unittest.cc", |
| 57 "ortcrtpsender_unittest.cc", | 57 "ortcrtpsender_unittest.cc", |
| 58 "rtpparametersconversion_unittest.cc", | 58 "rtpparametersconversion_unittest.cc", |
| 59 "rtptransport_unittest.cc", | 59 "rtptransport_unittest.cc", |
| 60 "rtptransportcontroller_unittest.cc", | 60 "rtptransportcontroller_unittest.cc", |
| 61 "srtptransport_unittest.cc", |
| 61 "testrtpparameters.cc", | 62 "testrtpparameters.cc", |
| 62 "testrtpparameters.h", | 63 "testrtpparameters.h", |
| 63 ] | 64 ] |
| 64 | 65 |
| 65 deps = [ | 66 deps = [ |
| 66 ":ortc", | 67 ":ortc", |
| 67 "../base:rtc_base_tests_utils", | 68 "../base:rtc_base_tests_utils", |
| 68 "../media:rtc_unittest_main", | 69 "../media:rtc_unittest_main", |
| 69 "../pc:pc_test_utils", | 70 "../pc:pc_test_utils", |
| 70 "../system_wrappers:metrics_default", | 71 "../system_wrappers:metrics_default", |
| 71 ] | 72 ] |
| 72 | 73 |
| 73 if (!build_with_chromium && is_clang) { | 74 if (!build_with_chromium && is_clang) { |
| 74 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 75 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 75 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 76 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 76 } | 77 } |
| 77 | 78 |
| 78 if (is_android) { | 79 if (is_android) { |
| 79 deps += [ "//testing/android/native_test:native_test_support" ] | 80 deps += [ "//testing/android/native_test:native_test_support" ] |
| 80 } | 81 } |
| 81 } | 82 } |
| 82 } | 83 } |
| OLD | NEW |