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 24 matching lines...) Expand all Loading... |
35 # TODO(sergeyu): Fix libjingle to use NDEBUG instead of | 35 # TODO(sergeyu): Fix libjingle to use NDEBUG instead of |
36 # _DEBUG and remove this define. See below as well. | 36 # _DEBUG and remove this define. See below as well. |
37 '_DEBUG', | 37 '_DEBUG', |
38 ], | 38 ], |
39 } | 39 } |
40 }, | 40 }, |
41 'include_dirs': [ | 41 'include_dirs': [ |
42 './overrides', | 42 './overrides', |
43 './<@(libjingle_source)', | 43 './<@(libjingle_source)', |
44 '../../testing/gtest/include', | 44 '../../testing/gtest/include', |
| 45 '../../third_party', |
45 '../../third_party/libyuv/include', | 46 '../../third_party/libyuv/include', |
46 '../../third_party/webrtc', | 47 '../../third_party/webrtc', |
47 ], | 48 ], |
48 'dependencies': [ | 49 'dependencies': [ |
49 '<(DEPTH)/base/base.gyp:base', | 50 '<(DEPTH)/base/base.gyp:base', |
50 '<(DEPTH)/net/net.gyp:net', | 51 '<(DEPTH)/net/net.gyp:net', |
51 '<(DEPTH)/third_party/expat/expat.gyp:expat', | 52 '<(DEPTH)/third_party/expat/expat.gyp:expat', |
52 ], | 53 ], |
53 'export_dependent_settings': [ | 54 'export_dependent_settings': [ |
54 '<(DEPTH)/third_party/expat/expat.gyp:expat', | 55 '<(DEPTH)/third_party/expat/expat.gyp:expat', |
55 ], | 56 ], |
56 'direct_dependent_settings': { | 57 'direct_dependent_settings': { |
57 'include_dirs': [ | 58 'include_dirs': [ |
58 './overrides', | 59 './overrides', |
59 './<@(libjingle_source)', | 60 './<@(libjingle_source)', |
60 '../../testing/gtest/include', | 61 '../../testing/gtest/include', |
| 62 '../../third_party', |
61 '../../third_party/webrtc', | 63 '../../third_party/webrtc', |
62 ], | 64 ], |
63 'defines': [ | 65 'defines': [ |
64 'FEATURE_ENABLE_SSL', | 66 'FEATURE_ENABLE_SSL', |
65 'FEATURE_ENABLE_VOICEMAIL', | 67 'FEATURE_ENABLE_VOICEMAIL', |
66 'EXPAT_RELATIVE_PATH', | 68 'EXPAT_RELATIVE_PATH', |
67 'GTEST_RELATIVE_PATH', | 69 'GTEST_RELATIVE_PATH', |
68 'JSONCPP_RELATIVE_PATH', | 70 'JSONCPP_RELATIVE_PATH', |
69 'NO_MAIN_THREAD_WRAPPING', | 71 'NO_MAIN_THREAD_WRAPPING', |
70 'NO_SOUND_SYSTEM', | 72 'NO_SOUND_SYSTEM', |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 }], | 715 }], |
714 ['OS=="mac"', { | 716 ['OS=="mac"', { |
715 'sources': [ | 717 'sources': [ |
716 '<@(libjingle_source)/talk/media/devices/macdevicemanager.cc', | 718 '<@(libjingle_source)/talk/media/devices/macdevicemanager.cc', |
717 '<@(libjingle_source)/talk/media/devices/macdevicemanager.h', | 719 '<@(libjingle_source)/talk/media/devices/macdevicemanager.h', |
718 '<@(libjingle_source)/talk/media/devices/macdevicemanagermm.mm', | 720 '<@(libjingle_source)/talk/media/devices/macdevicemanagermm.mm', |
719 ], | 721 ], |
720 'xcode_settings': { | 722 'xcode_settings': { |
721 'WARNING_CFLAGS': [ | 723 'WARNING_CFLAGS': [ |
722 # Suppres warnings about using deprecated functions in | 724 # Suppres warnings about using deprecated functions in |
723 # macdevicemanager.cc. | 725 # macdevicemanager.cc. |
724 '-Wno-deprecated-declarations', | 726 '-Wno-deprecated-declarations', |
725 ], | 727 ], |
726 }, | 728 }, |
727 }], | 729 }], |
728 ], | 730 ], |
729 }], | 731 }], |
730 ['OS!="android"', { | 732 ['OS!="android"', { |
731 'dependencies': [ | 733 'dependencies': [ |
732 # We won't build with WebRTC on Android. | 734 # We won't build with WebRTC on Android. |
733 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp', | 735 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp', |
(...skipping 23 matching lines...) Expand all Loading... |
757 ], | 759 ], |
758 'include_dirs': [ | 760 'include_dirs': [ |
759 '<@(libjingle_source)', | 761 '<@(libjingle_source)', |
760 ], | 762 ], |
761 'dependencies': [ | 763 'dependencies': [ |
762 'libjingle', | 764 'libjingle', |
763 ], | 765 ], |
764 }, # target peerconnection_server | 766 }, # target peerconnection_server |
765 ], | 767 ], |
766 } | 768 } |
OLD | NEW |