Home | History | Annotate | Download | only in build
      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             ],
     23         },
     24     ],
     25 }
     26