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

Side by Side Diff: third_party/libjingle/libjingle.gyp

Issue 620373003: Revert of Making WebRTC Java api avaliable in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 | « third_party/libjingle/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'enabled_libjingle_device_manager%': 0, 10 'enabled_libjingle_device_manager%': 0,
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 ['OS=="linux" and libpeer_target_type!="static_library"', { 639 ['OS=="linux" and libpeer_target_type!="static_library"', {
640 # The installer and various tools depend on finding the .so 640 # The installer and various tools depend on finding the .so
641 # in this directory and not lib.target as will otherwise be 641 # in this directory and not lib.target as will otherwise be
642 # the case with make builds. 642 # the case with make builds.
643 'product_dir': '<(PRODUCT_DIR)/lib', 643 'product_dir': '<(PRODUCT_DIR)/lib',
644 }], 644 }],
645 ], 645 ],
646 }, # target libpeerconnection 646 }, # target libpeerconnection
647 ], 647 ],
648 }], 648 }],
649 ['enable_webrtc==1 and OS=="android" and "<(libpeer_target_type)"=="static_l ibrary"', {
650 'targets': [
651 {
652 # GN version: //third_party/libjingle:libjingle_peerconnection_so
653 'target_name': 'libjingle_peerconnection_so',
654 'type': 'shared_library',
655 'dependencies': [
656 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
657 'libjingle_webrtc',
658 'libpeerconnection',
659 ],
660 'sources': [
661 '<(libjingle_source)/talk/app/webrtc/java/jni/peerconnection_jni.cc' ,
662 ],
663 },
664 {
665 # GN version: //third_party/libjingle:libjingle_peerconnection_java
666 'target_name': 'libjingle_peerconnection_javalib',
667 'type': 'none',
668 'variables': {
669 'java_in_dir': '<(libjingle_source)/talk/app/webrtc/java',
670 },
671 'dependencies': [
672 'libjingle_peerconnection_so',
673 ],
674 'includes': [ '../../build/java.gypi' ],
675 },
676 ],
677 }],
678 ], 649 ],
679 } 650 }
OLDNEW
« no previous file with comments | « third_party/libjingle/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698