Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: webrtc/api/BUILD.gn

Issue 2539213003: Support external audio mixer. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/api/peerconnection.h » ('j') | webrtc/api/peerconnection.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 if (is_android) { 10 if (is_android) {
11 import("//build/config/android/config.gni") 11 import("//build/config/android/config.gni")
12 import("//build/config/android/rules.gni") 12 import("//build/config/android/rules.gni")
13 } 13 }
14 14
15 group("api") { 15 group("api") {
16 public_deps = [ 16 public_deps = [
17 ":libjingle_peerconnection", 17 ":libjingle_peerconnection",
18 ] 18 ]
19 if (is_android && !build_with_chromium) { 19 if (is_android && !build_with_chromium) {
20 public_deps += [ 20 public_deps += [
21 ":libjingle_peerconnection_java", 21 ":libjingle_peerconnection_java",
22 ":libjingle_peerconnection_so", 22 ":libjingle_peerconnection_so",
23 ] 23 ]
24 } 24 }
25 } 25 }
26 26
27 rtc_source_set("call_api") { 27 rtc_static_library("call_api") {
GeorgeZ 2016/12/01 17:36:32 Based on this bug https://buganizer.corp.google.co
aleloi 2016/12/05 14:03:08 Please don't post internal links here.
GeorgeZ 2016/12/05 17:56:18 Thanks for reminding. On 2016/12/05 14:03:08, ale
28 sources = [ 28 sources = [
29 "call/audio_receive_stream.h", 29 "call/audio_receive_stream.h",
30 "call/audio_send_stream.cc", 30 "call/audio_send_stream.cc",
31 "call/audio_send_stream.h", 31 "call/audio_send_stream.h",
32 "call/audio_sink.h", 32 "call/audio_sink.h",
33 "call/audio_state.h", 33 "call/audio_state.h",
34 "call/flexfec_receive_stream.h", 34 "call/flexfec_receive_stream.h",
35 ] 35 ]
36 36
37 deps = [ 37 deps = [
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 ":libjingle_peerconnection_java", 531 ":libjingle_peerconnection_java",
532 ":libjingle_peerconnection_metrics_default_java", 532 ":libjingle_peerconnection_metrics_default_java",
533 "../base:base_java", 533 "../base:base_java",
534 "//base:base_java", 534 "//base:base_java",
535 ] 535 ]
536 536
537 shared_libraries = [ ":libjingle_peerconnection_so" ] 537 shared_libraries = [ ":libjingle_peerconnection_so" ]
538 } 538 }
539 } 539 }
540 } 540 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/peerconnection.h » ('j') | webrtc/api/peerconnection.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698