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

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

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