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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 "source/talk/media/webrtc/webrtcvoiceengine.cc", | 545 "source/talk/media/webrtc/webrtcvoiceengine.cc", |
546 "source/talk/media/webrtc/webrtcvoiceengine.h", | 546 "source/talk/media/webrtc/webrtcvoiceengine.h", |
547 ] | 547 ] |
548 | 548 |
549 configs += [ ":jingle_unexported_configs" ] | 549 configs += [ ":jingle_unexported_configs" ] |
550 public_configs = [ ":jingle_direct_dependent_configs" ] | 550 public_configs = [ ":jingle_direct_dependent_configs" ] |
551 | 551 |
552 deps = [ | 552 deps = [ |
553 ":libjingle_webrtc_common", | 553 ":libjingle_webrtc_common", |
554 "//third_party/webrtc", | 554 "//third_party/webrtc", |
555 "//third_party/webrtc/modules/audio_processing", | |
556 "//third_party/webrtc/system_wrappers", | 555 "//third_party/webrtc/system_wrappers", |
557 "//third_party/webrtc/voice_engine", | 556 "//third_party/webrtc/voice_engine", |
558 ] | 557 ] |
559 } | 558 } |
560 | 559 |
561 source_set("libjingle_peerconnection_so") { | 560 source_set("libjingle_peerconnection_so") { |
562 sources = [ | 561 sources = [ |
563 "source/talk/app/webrtc/java/jni/peerconnection_jni.cc", | 562 "source/talk/app/webrtc/java/jni/peerconnection_jni.cc", |
564 ] | 563 ] |
565 deps = [ | 564 deps = [ |
(...skipping 22 matching lines...) Expand all Loading... |
588 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", | 587 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", |
589 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", | 588 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", |
590 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", | 589 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", |
591 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", | 590 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", |
592 ] | 591 ] |
593 } | 592 } |
594 | 593 |
595 } # enable_webrtc | 594 } # enable_webrtc |
596 | 595 |
597 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 596 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
OLD | NEW |