• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2013 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  'variables': {
11    'include_examples%': 1,
12    'include_tests%': 1,
13    'webrtc_root_additional_dependencies': [],
14  },
15  'targets': [
16    {
17      'target_name': 'All',
18      'type': 'none',
19      'dependencies': [
20        'webrtc/webrtc.gyp:*',
21        'talk/libjingle.gyp:*',
22        '<@(webrtc_root_additional_dependencies)',
23      ],
24      'conditions': [
25        ['include_examples==1', {
26          'dependencies': [
27            'webrtc/webrtc_examples.gyp:*',
28          ],
29        }],
30        ['include_tests==1', {
31          'dependencies': [
32            'talk/libjingle_tests.gyp:*',
33          ],
34        }],
35      ],
36    },
37  ],
38}
39