| 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |