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 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 | 30 |
31 source_set("libjingle_peerconnection") { | 31 source_set("libjingle_peerconnection") { |
32 cflags = [] | 32 cflags = [] |
33 sources = [ | 33 sources = [ |
34 "audiotrack.cc", | 34 "audiotrack.cc", |
35 "audiotrack.h", | 35 "audiotrack.h", |
36 "datachannel.cc", | 36 "datachannel.cc", |
37 "datachannel.h", | 37 "datachannel.h", |
38 "datachannelinterface.h", | 38 "datachannelinterface.h", |
39 "dtlsidentitystore.h", | |
40 "dtmfsender.cc", | 39 "dtmfsender.cc", |
41 "dtmfsender.h", | 40 "dtmfsender.h", |
42 "dtmfsenderinterface.h", | 41 "dtmfsenderinterface.h", |
43 "jsep.h", | 42 "jsep.h", |
44 "jsepicecandidate.cc", | 43 "jsepicecandidate.cc", |
45 "jsepicecandidate.h", | 44 "jsepicecandidate.h", |
46 "jsepsessiondescription.cc", | 45 "jsepsessiondescription.cc", |
47 "jsepsessiondescription.h", | 46 "jsepsessiondescription.h", |
48 "localaudiosource.cc", | 47 "localaudiosource.cc", |
49 "localaudiosource.h", | 48 "localaudiosource.h", |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 "../pc:rtc_pc", | 390 "../pc:rtc_pc", |
392 "../system_wrappers:metrics_default", | 391 "../system_wrappers:metrics_default", |
393 "//testing/gmock", | 392 "//testing/gmock", |
394 ] | 393 ] |
395 | 394 |
396 if (is_android) { | 395 if (is_android) { |
397 deps += [ "//testing/android/native_test:native_test_support" ] | 396 deps += [ "//testing/android/native_test:native_test_support" ] |
398 } | 397 } |
399 } | 398 } |
400 } | 399 } |
OLD | NEW |