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