aboutsummaryrefslogtreecommitdiff
path: root/build/all.gyp
blob: 735fbeacc0e0509be280846c7ffa6360ad61d55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (c) 2010 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
    'targets':
    [
        {
            'target_name': 'All',
            'type': 'none',
            'dependencies': [ '../src/angle.gyp:*', ],
            'conditions':
            [
                ['angle_build_samples==1',
                {
                    'dependencies': [ '../samples/samples.gyp:*', ],
                }],
                ['angle_build_tests==1',
                {
                    'dependencies': [ '../tests/tests.gyp:*', ],
                }],
            ],
        },
    ],
}