blob: 96ae6a9aad2f7439e28704996e843a817483e3ba [file] [log] [blame]
henrike@webrtc.org00c3b1e2013-07-23 18:15:111# Copyright (c) 2012 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.
henrike@webrtc.org00c3b1e2013-07-23 18:15:118{
pbos@webrtc.org24e20892013-10-28 16:32:019 'conditions': [
10 ['include_tests==1', {
11 'includes': [
12 'webrtc_tests.gypi',
13 ],
14 }],
15 ],
16 'includes': [
17 'build/common.gypi',
18 'video/webrtc_video.gypi',
19 ],
henrike@webrtc.org00c3b1e2013-07-23 18:15:1120 'variables': {
21 'webrtc_all_dependencies': [
henrike@webrtc.org47be73b2014-05-13 18:00:2622 'base/base.gyp:*',
henrike@webrtc.org91bac042014-08-26 22:04:0423 'sound/sound.gyp:*',
pbos@webrtc.org7e686932014-05-15 09:35:0624 'common.gyp:*',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1125 'common_audio/common_audio.gyp:*',
26 'common_video/common_video.gyp:*',
27 'modules/modules.gyp:*',
28 'system_wrappers/source/system_wrappers.gyp:*',
29 'video_engine/video_engine.gyp:*',
30 'voice_engine/voice_engine.gyp:*',
31 '<(webrtc_vp8_dir)/vp8.gyp:*',
32 ],
33 },
34 'targets': [
35 {
pbos@webrtc.org24e20892013-10-28 16:32:0136 'target_name': 'webrtc_all',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1137 'type': 'none',
38 'dependencies': [
39 '<@(webrtc_all_dependencies)',
pbos@webrtc.org24e20892013-10-28 16:32:0140 'webrtc',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1141 ],
42 'conditions': [
43 ['include_tests==1', {
44 'dependencies': [
henrike@webrtc.org47be73b2014-05-13 18:00:2645 'base/base_tests.gyp:*',
pbos@webrtc.orgc33d37c2013-12-11 16:26:1646 'common_video/common_video_unittests.gyp:*',
henrike@webrtc.org91bac042014-08-26 22:04:0447 'sound/sound_tests.gyp:*',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1148 'system_wrappers/source/system_wrappers_tests.gyp:*',
49 'test/metrics.gyp:*',
50 'test/test.gyp:*',
stefan@webrtc.orgaacdb9f2013-12-18 20:28:2551 'test/webrtc_test_common.gyp:webrtc_test_common_unittests',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1152 'tools/tools.gyp:*',
pbos@webrtc.org24e20892013-10-28 16:32:0153 'webrtc_tests',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1154 ],
55 }],
kjellander@webrtc.org8e701082013-10-10 08:48:1656 ['build_with_chromium==0 and OS=="android"', {
henrike@webrtc.org00c3b1e2013-07-23 18:15:1157 'dependencies': [
58 '../tools/android/android_tools_precompiled.gyp:*',
henrike@webrtc.org00c3b1e2013-07-23 18:15:1159 ],
60 }],
61 ],
62 },
pbos@webrtc.org24e20892013-10-28 16:32:0163 {
64 # TODO(pbos): This is intended to contain audio parts as well as soon as
65 # VoiceEngine moves to the same new API format.
66 'target_name': 'webrtc',
67 'type': 'static_library',
68 'sources': [
pbos@webrtc.org24e20892013-10-28 16:32:0169 'call.h',
70 'config.h',
stefan@webrtc.org47f0c412013-12-04 10:24:2671 'experiments.h',
pbos@webrtc.org24e20892013-10-28 16:32:0172 'frame_callback.h',
73 'transport.h',
74 'video_receive_stream.h',
75 'video_renderer.h',
76 'video_send_stream.h',
77
78 '<@(webrtc_video_sources)',
79 ],
80 'dependencies': [
pbos@webrtc.org7e686932014-05-15 09:35:0681 'common.gyp:*',
pbos@webrtc.org24e20892013-10-28 16:32:0182 '<@(webrtc_video_dependencies)',
83 ],
84 },
henrike@webrtc.org00c3b1e2013-07-23 18:15:1185 ],
86}