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

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

Issue 982563002: Removing WebRTC Java API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 ['OS=="linux" and libpeer_target_type!="static_library"', { 638 ['OS=="linux" and libpeer_target_type!="static_library"', {
639 # The installer and various tools depend on finding the .so 639 # The installer and various tools depend on finding the .so
640 # in this directory and not lib.target as will otherwise be 640 # in this directory and not lib.target as will otherwise be
641 # the case with make builds. 641 # the case with make builds.
642 'product_dir': '<(PRODUCT_DIR)/lib', 642 'product_dir': '<(PRODUCT_DIR)/lib',
643 }], 643 }],
644 ], 644 ],
645 }, # target libpeerconnection 645 }, # target libpeerconnection
646 ], 646 ],
647 }], 647 }],
648 ['enable_webrtc==1 and OS=="android" and "<(libpeer_target_type)"=="static_l ibrary"', {
649 'targets': [
650 {
651 # GN version: //third_party/libjingle:libjingle_peerconnection_so
652 'target_name': 'libjingle_peerconnection_so',
653 'type': 'shared_library',
654 'dependencies': [
655 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
656 'libjingle_webrtc',
657 'libpeerconnection',
658 ],
659 'sources': [
660 '<(libjingle_source)/talk/app/webrtc/java/jni/peerconnection_jni.cc' ,
661 ],
662 },
663 {
664 # GN version: //third_party/libjingle:libjingle_peerconnection_java
665 'target_name': 'libjingle_peerconnection_javalib',
666 'type': 'none',
667 'variables': {
668 'java_in_dir': '<(libjingle_source)/talk/app/webrtc/java',
669 },
670 'dependencies': [
671 'libjingle_peerconnection_so',
672 ],
673 'includes': [ '../../build/java.gypi' ],
674 },
675 ],
676 }],
677 ], 648 ],
678 } 649 }
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