1# Copyright (c) 2010 The ANGLE Project Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6    'targets':
7    [
8        {
9            'target_name': 'All',
10            'type': 'none',
11            'dependencies': [ '../src/angle.gyp:*', ],
12            'conditions':
13            [
14                ['angle_build_samples==1',
15                {
16                    'dependencies': [ '../samples/samples.gyp:*', ],
17                }],
18                ['angle_build_tests==1',
19                {
20                    'dependencies': [ '../tests/tests.gyp:*', ],
21                }],
22                ['angle_build_samples==1 or angle_build_tests==1',
23                {
24                    'dependencies': [ '../util/util.gyp:*', ],
25                }],
26            ],
27        },
28    ],
29}
30