| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 # From third_party/libjingle/libjingle.gyp's target_defaults. | 8 # From third_party/libjingle/libjingle.gyp's target_defaults. |
| 9 config("jingle_unexported_configs") { | 9 config("jingle_unexported_configs") { |
| 10 defines = [ | 10 defines = [ |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 configs += [ ":jingle_unexported_configs" ] | 550 configs += [ ":jingle_unexported_configs" ] |
| 551 public_configs = [ ":jingle_direct_dependent_configs" ] | 551 public_configs = [ ":jingle_direct_dependent_configs" ] |
| 552 | 552 |
| 553 deps = [ | 553 deps = [ |
| 554 ":libjingle_webrtc_common", | 554 ":libjingle_webrtc_common", |
| 555 "//third_party/webrtc", | 555 "//third_party/webrtc", |
| 556 "//third_party/webrtc/system_wrappers", | 556 "//third_party/webrtc/system_wrappers", |
| 557 "//third_party/webrtc/voice_engine", | 557 "//third_party/webrtc/voice_engine", |
| 558 ] | 558 ] |
| 559 } | 559 } |
| 560 | |
| 561 source_set("libjingle_peerconnection_so") { | |
| 562 sources = [ | |
| 563 "source/talk/app/webrtc/java/jni/peerconnection_jni.cc", | |
| 564 ] | |
| 565 deps = [ | |
| 566 "libjingle_webrtc", | |
| 567 "libpeerconnection", | |
| 568 ] | |
| 569 } | |
| 570 | |
| 571 android_library("libjingle_peerconnection_java") { | |
| 572 java_files = [ | |
| 573 "source/talk/app/webrtc/java/src/org/webrtc/AudioSource.java", | |
| 574 "source/talk/app/webrtc/java/src/org/webrtc/AudioTrack.java", | |
| 575 "source/talk/app/webrtc/java/src/org/webrtc/DataChannel.java", | |
| 576 "source/talk/app/webrtc/java/src/org/webrtc/IceCandidate.java", | |
| 577 "source/talk/app/webrtc/java/src/org/webrtc/Logging.java", | |
| 578 "source/talk/app/webrtc/java/src/org/webrtc/MediaConstraints.java", | |
| 579 "source/talk/app/webrtc/java/src/org/webrtc/MediaSource.java", | |
| 580 "source/talk/app/webrtc/java/src/org/webrtc/MediaStream.java", | |
| 581 "source/talk/app/webrtc/java/src/org/webrtc/MediaStreamTrack.java", | |
| 582 "source/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java", | |
| 583 "source/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java", | |
| 584 "source/talk/app/webrtc/java/src/org/webrtc/SdpObserver.java", | |
| 585 "source/talk/app/webrtc/java/src/org/webrtc/StatsObserver.java", | |
| 586 "source/talk/app/webrtc/java/src/org/webrtc/StatsReport.java", | |
| 587 "source/talk/app/webrtc/java/src/org/webrtc/SessionDescription.java", | |
| 588 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", | |
| 589 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", | |
| 590 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", | |
| 591 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", | |
| 592 ] | |
| 593 } | |
| 594 } # enable_webrtc | 560 } # enable_webrtc |
| 595 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 561 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
| OLD | NEW |