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 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 } | 27 } |
28 | 28 |
29 source_set("libjingle_peerconnection") { | 29 source_set("libjingle_peerconnection") { |
30 cflags = [] | 30 cflags = [] |
31 sources = [ | 31 sources = [ |
32 "audiotrack.cc", | 32 "audiotrack.cc", |
33 "audiotrack.h", | 33 "audiotrack.h", |
34 "datachannel.cc", | 34 "datachannel.cc", |
35 "datachannel.h", | 35 "datachannel.h", |
36 "datachannelinterface.h", | 36 "datachannelinterface.h", |
37 "dtlsidentitystore.cc", | |
38 "dtlsidentitystore.h", | 37 "dtlsidentitystore.h", |
39 "dtmfsender.cc", | 38 "dtmfsender.cc", |
40 "dtmfsender.h", | 39 "dtmfsender.h", |
41 "dtmfsenderinterface.h", | 40 "dtmfsenderinterface.h", |
42 "jsep.h", | 41 "jsep.h", |
43 "jsepicecandidate.cc", | 42 "jsepicecandidate.cc", |
44 "jsepicecandidate.h", | 43 "jsepicecandidate.h", |
45 "jsepsessiondescription.cc", | 44 "jsepsessiondescription.cc", |
46 "jsepsessiondescription.h", | 45 "jsepsessiondescription.h", |
47 "localaudiosource.cc", | 46 "localaudiosource.cc", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "quicdatachannel.h", | 126 "quicdatachannel.h", |
128 "quicdatatransport.cc", | 127 "quicdatatransport.cc", |
129 "quicdatatransport.h", | 128 "quicdatatransport.h", |
130 ] | 129 ] |
131 deps += [ "//third_party/libquic" ] | 130 deps += [ "//third_party/libquic" ] |
132 public_deps = [ | 131 public_deps = [ |
133 "//third_party/libquic", | 132 "//third_party/libquic", |
134 ] | 133 ] |
135 } | 134 } |
136 } | 135 } |
OLD | NEW |