Chromium Code Reviews| 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 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 Loading... | |
| 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 } |
| OLD | NEW |