| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 cflags = [] | 41 cflags = [] |
| 42 sources = [ | 42 sources = [ |
| 43 "datachannel.h", | 43 "datachannel.h", |
| 44 "datachannelinterface.h", | 44 "datachannelinterface.h", |
| 45 "dtmfsenderinterface.h", | 45 "dtmfsenderinterface.h", |
| 46 "jsep.h", | 46 "jsep.h", |
| 47 "jsepicecandidate.h", | 47 "jsepicecandidate.h", |
| 48 "jsepsessiondescription.h", | 48 "jsepsessiondescription.h", |
| 49 "mediaconstraintsinterface.cc", | 49 "mediaconstraintsinterface.cc", |
| 50 "mediaconstraintsinterface.h", | 50 "mediaconstraintsinterface.h", |
| 51 "mediacontroller.h", | |
| 52 "mediastream.h", | 51 "mediastream.h", |
| 53 "mediastreaminterface.cc", | 52 "mediastreaminterface.cc", |
| 54 "mediastreaminterface.h", | 53 "mediastreaminterface.h", |
| 55 "mediastreamproxy.h", | 54 "mediastreamproxy.h", |
| 56 "mediastreamtrack.h", | 55 "mediastreamtrack.h", |
| 57 "mediastreamtrackproxy.h", | 56 "mediastreamtrackproxy.h", |
| 58 "mediatypes.cc", | 57 "mediatypes.cc", |
| 59 "mediatypes.h", | 58 "mediatypes.h", |
| 60 "notifier.h", | 59 "notifier.h", |
| 61 "peerconnectionfactoryproxy.h", | 60 "peerconnectionfactoryproxy.h", |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 261 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 263 } | 262 } |
| 264 | 263 |
| 265 deps = [ | 264 deps = [ |
| 266 ":libjingle_peerconnection_api", | 265 ":libjingle_peerconnection_api", |
| 267 ":ortc_api", | 266 ":ortc_api", |
| 268 "//webrtc/test:test_support", | 267 "//webrtc/test:test_support", |
| 269 ] | 268 ] |
| 270 } | 269 } |
| 271 } | 270 } |
| OLD | NEW |