| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 rtc_source_set("ortc_api") { | 88 rtc_source_set("ortc_api") { |
| 89 check_includes = false # TODO(deadbeef): Remove (bugs.webrtc.org/6828) | 89 check_includes = false # TODO(deadbeef): Remove (bugs.webrtc.org/6828) |
| 90 sources = [ | 90 sources = [ |
| 91 "ortc/ortcfactoryinterface.h", | 91 "ortc/ortcfactoryinterface.h", |
| 92 "ortc/ortcrtpreceiverinterface.h", | 92 "ortc/ortcrtpreceiverinterface.h", |
| 93 "ortc/ortcrtpsenderinterface.h", | 93 "ortc/ortcrtpsenderinterface.h", |
| 94 "ortc/packettransportinterface.h", | 94 "ortc/packettransportinterface.h", |
| 95 "ortc/rtptransportcontrollerinterface.h", | 95 "ortc/rtptransportcontrollerinterface.h", |
| 96 "ortc/rtptransportinterface.h", | 96 "ortc/rtptransportinterface.h", |
| 97 "ortc/srtptransportinterface.h", |
| 97 "ortc/udptransportinterface.h", | 98 "ortc/udptransportinterface.h", |
| 98 ] | 99 ] |
| 99 | 100 |
| 100 # For mediastreaminterface.h, etc. | 101 # For mediastreaminterface.h, etc. |
| 101 # TODO(deadbeef): Create a separate target for the common things ORTC and | 102 # TODO(deadbeef): Create a separate target for the common things ORTC and |
| 102 # PeerConnection code shares, so that ortc_api can depend on that instead of | 103 # PeerConnection code shares, so that ortc_api can depend on that instead of |
| 103 # libjingle_peerconnection_api. | 104 # libjingle_peerconnection_api. |
| 104 public_deps = [ | 105 public_deps = [ |
| 105 ":libjingle_peerconnection_api", | 106 ":libjingle_peerconnection_api", |
| 106 ] | 107 ] |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 231 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 231 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 232 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 232 } | 233 } |
| 233 | 234 |
| 234 deps = [ | 235 deps = [ |
| 235 ":libjingle_peerconnection_api", | 236 ":libjingle_peerconnection_api", |
| 236 "//webrtc/test:test_support", | 237 "//webrtc/test:test_support", |
| 237 ] | 238 ] |
| 238 } | 239 } |
| 239 } | 240 } |
| OLD | NEW |