| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 ] | 149 ] |
| 150 } | 150 } |
| 151 | 151 |
| 152 rtc_source_set("audio_mixer_api") { | 152 rtc_source_set("audio_mixer_api") { |
| 153 sources = [ | 153 sources = [ |
| 154 "audio/audio_mixer.h", | 154 "audio/audio_mixer.h", |
| 155 ] | 155 ] |
| 156 | 156 |
| 157 deps = [ | 157 deps = [ |
| 158 "../base:rtc_base_approved", | 158 "../base:rtc_base_approved", |
| 159 "../modules:module_api", |
| 159 ] | 160 ] |
| 160 } | 161 } |
| 161 | 162 |
| 162 rtc_source_set("transport_api") { | 163 rtc_source_set("transport_api") { |
| 163 sources = [ | 164 sources = [ |
| 164 "call/transport.h", | 165 "call/transport.h", |
| 165 ] | 166 ] |
| 166 } | 167 } |
| 167 | 168 |
| 168 rtc_source_set("video_frame_api") { | 169 rtc_source_set("video_frame_api") { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 262 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 262 } | 263 } |
| 263 | 264 |
| 264 deps = [ | 265 deps = [ |
| 265 ":libjingle_peerconnection_api", | 266 ":libjingle_peerconnection_api", |
| 266 ":ortc_api", | 267 ":ortc_api", |
| 267 "//webrtc/test:test_support", | 268 "//webrtc/test:test_support", |
| 268 ] | 269 ] |
| 269 } | 270 } |
| 270 } | 271 } |
| OLD | NEW |