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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 'dependencies': [ | 581 'dependencies': [ |
582 'libjingle_webrtc_common', | 582 'libjingle_webrtc_common', |
583 ], | 583 ], |
584 }, | 584 }, |
585 { | 585 { |
586 'target_name': 'libpeerconnection', | 586 'target_name': 'libpeerconnection', |
587 'type': '<(libpeer_target_type)', | 587 'type': '<(libpeer_target_type)', |
588 'sources': [ | 588 'sources': [ |
589 '<(libjingle_source)/talk/media/webrtc/webrtcvideoengine.cc', | 589 '<(libjingle_source)/talk/media/webrtc/webrtcvideoengine.cc', |
590 '<(libjingle_source)/talk/media/webrtc/webrtcvideoengine.h', | 590 '<(libjingle_source)/talk/media/webrtc/webrtcvideoengine.h', |
| 591 '<(libjingle_source)/talk/media/webrtc/webrtcvideoengine2.cc', |
| 592 '<(libjingle_source)/talk/media/webrtc/webrtcvideoengine2.h', |
591 '<(libjingle_source)/talk/media/webrtc/webrtcvoiceengine.cc', | 593 '<(libjingle_source)/talk/media/webrtc/webrtcvoiceengine.cc', |
592 '<(libjingle_source)/talk/media/webrtc/webrtcvoiceengine.h', | 594 '<(libjingle_source)/talk/media/webrtc/webrtcvoiceengine.h', |
593 ], | 595 ], |
594 'dependencies': [ | 596 'dependencies': [ |
595 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.
gyp:system_wrappers', | 597 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.
gyp:system_wrappers', |
596 '<(DEPTH)/third_party/webrtc/video_engine/video_engine.gyp:video_eng
ine_core', | |
597 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_eng
ine', | 598 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_eng
ine', |
| 599 '<(DEPTH)/third_party/webrtc/webrtc.gyp:webrtc', |
598 '<@(libjingle_peerconnection_additional_deps)', | 600 '<@(libjingle_peerconnection_additional_deps)', |
599 'libjingle_webrtc_common', | 601 'libjingle_webrtc_common', |
600 ], | 602 ], |
601 'conditions': [ | 603 'conditions': [ |
602 ['libpeer_target_type!="static_library"', { | 604 ['libpeer_target_type!="static_library"', { |
603 'sources': [ | 605 'sources': [ |
604 'overrides/initialize_module.cc', | 606 'overrides/initialize_module.cc', |
605 ], | 607 ], |
606 'conditions': [ | 608 'conditions': [ |
607 ['OS!="mac" and OS!="android"', { | 609 ['OS!="mac" and OS!="android"', { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 # in this directory and not lib.target as will otherwise be | 646 # in this directory and not lib.target as will otherwise be |
645 # the case with make builds. | 647 # the case with make builds. |
646 'product_dir': '<(PRODUCT_DIR)/lib', | 648 'product_dir': '<(PRODUCT_DIR)/lib', |
647 }], | 649 }], |
648 ], | 650 ], |
649 }, # target libpeerconnection | 651 }, # target libpeerconnection |
650 ], | 652 ], |
651 }], | 653 }], |
652 ], | 654 ], |
653 } | 655 } |
OLD | NEW |