blob: 49d35d9de1435a974c90948533800c0e3a96d435 [file] [log] [blame]
niklase@google.comda159d62011-05-30 11:51:34 +00001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9{
10 'includes': [
11 'common_settings.gypi', # Common settings
12 ],
13 'targets': [
14 {
15 'target_name': 'auto_tests',
16 'type': 'none',
17 'dependencies': [
18 'voice_engine.gyp:voe_auto_test',
19 'video_engine.gyp:vie_auto_test',
20 ],
tommi@google.comaefcdf42011-05-31 15:49:22 +000021 },
niklase@google.comda159d62011-05-30 11:51:34 +000022 {
tommi@google.comaefcdf42011-05-31 15:49:22 +000023 'target_name': 'peerconnection_server',
24 'type': 'executable',
25 'sources': [
26 'peerconnection/samples/server/data_socket.cc',
27 'peerconnection/samples/server/data_socket.h',
28 'peerconnection/samples/server/main.cc',
29 'peerconnection/samples/server/peer_channel.cc',
30 'peerconnection/samples/server/peer_channel.h',
31 'peerconnection/samples/server/utils.cc',
32 'peerconnection/samples/server/utils.h',
33 ],
34 },
35 ],
36 'conditions': [
37 ['OS=="win"', {
38 'targets': [
39 {
40 'target_name': 'peerconnection_client',
niklase@google.comda159d62011-05-30 11:51:34 +000041 'type': 'executable',
42 'sources': [
43 'peerconnection/samples/client/conductor.cc',
44 'peerconnection/samples/client/conductor.h',
45 'peerconnection/samples/client/defaults.cc',
46 'peerconnection/samples/client/defaults.h',
47 'peerconnection/samples/client/main.cc',
48 'peerconnection/samples/client/main_wnd.cc',
49 'peerconnection/samples/client/main_wnd.h',
50 'peerconnection/samples/client/peer_connection_client.cc',
51 'peerconnection/samples/client/peer_connection_client.h',
52 '../third_party/libjingle/source/talk/base/win32socketinit.cc',
53 '../third_party/libjingle/source/talk/base/win32socketserver.cc',
54 ],
55 'msvs_settings': {
56 'VCLinkerTool': {
57 'SubSystem': '2', # Windows
58 },
59 },
tommi@google.comaefcdf42011-05-31 15:49:22 +000060 'dependencies': [
61 '../third_party/libjingle/libjingle.gyp:libjingle_app',
62 ],
63 'include_dirs': [
64 '../third_party/libjingle/source',
65 ],
66 },
67 ], # targets
68 }, ], # OS="win"
69 ], # conditions
niklase@google.comda159d62011-05-30 11:51:34 +000070}