| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 if (is_clang) { | 121 if (is_clang) { |
| 122 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 122 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 123 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 123 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 124 } | 124 } |
| 125 | 125 |
| 126 deps = [ | 126 deps = [ |
| 127 ":call_api", | 127 ":call_api", |
| 128 "../call", | 128 "../call", |
| 129 "../media", | 129 "../media", |
| 130 "../pc", | 130 "../pc", |
| 131 "../stats", |
| 131 ] | 132 ] |
| 132 | 133 |
| 133 if (rtc_use_quic) { | 134 if (rtc_use_quic) { |
| 134 sources += [ | 135 sources += [ |
| 135 "quicdatachannel.cc", | 136 "quicdatachannel.cc", |
| 136 "quicdatachannel.h", | 137 "quicdatachannel.h", |
| 137 "quicdatatransport.cc", | 138 "quicdatatransport.cc", |
| 138 "quicdatatransport.h", | 139 "quicdatatransport.h", |
| 139 ] | 140 ] |
| 140 deps += [ "//third_party/libquic" ] | 141 deps += [ "//third_party/libquic" ] |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "fakemetricsobserver.h", | 330 "fakemetricsobserver.h", |
| 330 "jsepsessiondescription_unittest.cc", | 331 "jsepsessiondescription_unittest.cc", |
| 331 "localaudiosource_unittest.cc", | 332 "localaudiosource_unittest.cc", |
| 332 "mediaconstraintsinterface_unittest.cc", | 333 "mediaconstraintsinterface_unittest.cc", |
| 333 "mediastream_unittest.cc", | 334 "mediastream_unittest.cc", |
| 334 "peerconnection_unittest.cc", | 335 "peerconnection_unittest.cc", |
| 335 "peerconnectionendtoend_unittest.cc", | 336 "peerconnectionendtoend_unittest.cc", |
| 336 "peerconnectionfactory_unittest.cc", | 337 "peerconnectionfactory_unittest.cc", |
| 337 "peerconnectioninterface_unittest.cc", | 338 "peerconnectioninterface_unittest.cc", |
| 338 "proxy_unittest.cc", | 339 "proxy_unittest.cc", |
| 340 "rtcstats_unittest.cc", |
| 341 "rtcstatscollector_unittest.cc", |
| 342 "rtcstatsreport_unittest.cc", |
| 339 "rtpsenderreceiver_unittest.cc", | 343 "rtpsenderreceiver_unittest.cc", |
| 340 "statscollector_unittest.cc", | 344 "statscollector_unittest.cc", |
| 341 "test/fakeaudiocapturemodule.cc", | 345 "test/fakeaudiocapturemodule.cc", |
| 342 "test/fakeaudiocapturemodule.h", | 346 "test/fakeaudiocapturemodule.h", |
| 343 "test/fakeaudiocapturemodule_unittest.cc", | 347 "test/fakeaudiocapturemodule_unittest.cc", |
| 344 "test/fakeconstraints.h", | 348 "test/fakeconstraints.h", |
| 345 "test/fakedatachannelprovider.h", | 349 "test/fakedatachannelprovider.h", |
| 346 "test/fakeperiodicvideocapturer.h", | 350 "test/fakeperiodicvideocapturer.h", |
| 347 "test/fakertccertificategenerator.h", | 351 "test/fakertccertificategenerator.h", |
| 348 "test/fakevideotrackrenderer.h", | 352 "test/fakevideotrackrenderer.h", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 450 |
| 447 shared_libraries = [ ":libjingle_peerconnection_so" ] | 451 shared_libraries = [ ":libjingle_peerconnection_so" ] |
| 448 } | 452 } |
| 449 | 453 |
| 450 android_resources("libjingle_peerconnection_android_unittest_resources") { | 454 android_resources("libjingle_peerconnection_android_unittest_resources") { |
| 451 resource_dirs = [ "androidtests/res" ] | 455 resource_dirs = [ "androidtests/res" ] |
| 452 custom_package = "org.webrtc" | 456 custom_package = "org.webrtc" |
| 453 } | 457 } |
| 454 } | 458 } |
| 455 } | 459 } |
| OLD | NEW |