niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 1 | # 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.com | aefcdf4 | 2011-05-31 15:49:22 +0000 | [diff] [blame^] | 21 | }, |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 22 | { |
tommi@google.com | aefcdf4 | 2011-05-31 15:49:22 +0000 | [diff] [blame^] | 23 | '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.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 41 | '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.com | aefcdf4 | 2011-05-31 15:49:22 +0000 | [diff] [blame^] | 60 | '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.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 70 | } |