| 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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 "rtpsenderreceiver_unittest.cc", | 326 "rtpsenderreceiver_unittest.cc", |
| 327 "statscollector_unittest.cc", | 327 "statscollector_unittest.cc", |
| 328 "test/fakeaudiocapturemodule.cc", | 328 "test/fakeaudiocapturemodule.cc", |
| 329 "test/fakeaudiocapturemodule.h", | 329 "test/fakeaudiocapturemodule.h", |
| 330 "test/fakeaudiocapturemodule_unittest.cc", | 330 "test/fakeaudiocapturemodule_unittest.cc", |
| 331 "test/fakeconstraints.h", | 331 "test/fakeconstraints.h", |
| 332 "test/fakedatachannelprovider.h", | 332 "test/fakedatachannelprovider.h", |
| 333 "test/fakeperiodicvideocapturer.h", | 333 "test/fakeperiodicvideocapturer.h", |
| 334 "test/fakertccertificategenerator.h", | 334 "test/fakertccertificategenerator.h", |
| 335 "test/fakevideotrackrenderer.h", | 335 "test/fakevideotrackrenderer.h", |
| 336 "test/mock_peerconnection.h", |
| 337 "test/mock_webrtcsession.h", |
| 336 "test/mockpeerconnectionobservers.h", | 338 "test/mockpeerconnectionobservers.h", |
| 337 "test/peerconnectiontestwrapper.cc", | 339 "test/peerconnectiontestwrapper.cc", |
| 338 "test/peerconnectiontestwrapper.h", | 340 "test/peerconnectiontestwrapper.h", |
| 339 "test/testsdpstrings.h", | 341 "test/testsdpstrings.h", |
| 340 "videocapturertracksource_unittest.cc", | 342 "videocapturertracksource_unittest.cc", |
| 341 "videotrack_unittest.cc", | 343 "videotrack_unittest.cc", |
| 342 "webrtcsdp_unittest.cc", | 344 "webrtcsdp_unittest.cc", |
| 343 "webrtcsession_unittest.cc", | 345 "webrtcsession_unittest.cc", |
| 344 ] | 346 ] |
| 345 | 347 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 | 433 |
| 432 shared_libraries = [ ":libjingle_peerconnection_so" ] | 434 shared_libraries = [ ":libjingle_peerconnection_so" ] |
| 433 } | 435 } |
| 434 | 436 |
| 435 android_resources("libjingle_peerconnection_android_unittest_resources") { | 437 android_resources("libjingle_peerconnection_android_unittest_resources") { |
| 436 resource_dirs = [ "androidtests/res" ] | 438 resource_dirs = [ "androidtests/res" ] |
| 437 custom_package = "org.webrtc" | 439 custom_package = "org.webrtc" |
| 438 } | 440 } |
| 439 } | 441 } |
| 440 } | 442 } |
| OLD | NEW |