blob: 086d4831ad5f16df44916539f6dc481e50f83446 [file] [log] [blame]
henrike@webrtc.org00c3b1e2013-07-23 18:15:11 +00001# 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.
8
9{
10 'includes': ['build/common.gypi',],
11 'variables': {
12 'webrtc_all_dependencies': [
13 'common_audio/common_audio.gyp:*',
14 'common_video/common_video.gyp:*',
15 'modules/modules.gyp:*',
16 'system_wrappers/source/system_wrappers.gyp:*',
17 'video_engine/video_engine.gyp:*',
18 'voice_engine/voice_engine.gyp:*',
19 '<(webrtc_vp8_dir)/vp8.gyp:*',
20 ],
21 },
22 'targets': [
23 {
24 'target_name': 'webrtc',
25 'type': 'none',
26 'dependencies': [
27 '<@(webrtc_all_dependencies)',
28 ],
29 'conditions': [
30 ['include_tests==1', {
31 'dependencies': [
32 'system_wrappers/source/system_wrappers_tests.gyp:*',
33 'test/metrics.gyp:*',
34 'test/test.gyp:*',
35 'tools/tools.gyp:*',
36 '../tools/e2e_quality/e2e_quality.gyp:*',
37 ],
38 }],
39 ['OS=="android"', {
40 'dependencies': [
41 '../tools/android/android_tools_precompiled.gyp:*',
42 '../tools/android-dummy-test/android_dummy_test.gyp:*',
43 ],
44 }],
45 ],
46 },
47 ],
48}