| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |