| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "localaudiosource.h", | 48 "localaudiosource.h", |
| 49 "mediaconstraintsinterface.cc", | 49 "mediaconstraintsinterface.cc", |
| 50 "mediaconstraintsinterface.h", | 50 "mediaconstraintsinterface.h", |
| 51 "mediacontroller.cc", | 51 "mediacontroller.cc", |
| 52 "mediacontroller.h", | 52 "mediacontroller.h", |
| 53 "mediastream.cc", | 53 "mediastream.cc", |
| 54 "mediastream.h", | 54 "mediastream.h", |
| 55 "mediastreaminterface.h", | 55 "mediastreaminterface.h", |
| 56 "mediastreamobserver.cc", | 56 "mediastreamobserver.cc", |
| 57 "mediastreamobserver.h", | 57 "mediastreamobserver.h", |
| 58 "mediastreamprovider.h", | |
| 59 "mediastreamproxy.h", | 58 "mediastreamproxy.h", |
| 60 "mediastreamtrack.h", | 59 "mediastreamtrack.h", |
| 61 "mediastreamtrackproxy.h", | 60 "mediastreamtrackproxy.h", |
| 62 "notifier.h", | 61 "notifier.h", |
| 63 "peerconnection.cc", | 62 "peerconnection.cc", |
| 64 "peerconnection.h", | 63 "peerconnection.h", |
| 65 "peerconnectionfactory.cc", | 64 "peerconnectionfactory.cc", |
| 66 "peerconnectionfactory.h", | 65 "peerconnectionfactory.h", |
| 67 "peerconnectionfactoryproxy.h", | 66 "peerconnectionfactoryproxy.h", |
| 68 "peerconnectioninterface.h", | 67 "peerconnectioninterface.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "quicdatachannel.h", | 127 "quicdatachannel.h", |
| 129 "quicdatatransport.cc", | 128 "quicdatatransport.cc", |
| 130 "quicdatatransport.h", | 129 "quicdatatransport.h", |
| 131 ] | 130 ] |
| 132 deps += [ "//third_party/libquic" ] | 131 deps += [ "//third_party/libquic" ] |
| 133 public_deps = [ | 132 public_deps = [ |
| 134 "//third_party/libquic", | 133 "//third_party/libquic", |
| 135 ] | 134 ] |
| 136 } | 135 } |
| 137 } | 136 } |
| OLD | NEW |