Edit

kc3-lang/angle/gyp/ANGLE.gyp

Branch :

  • Show log

    Commit

  • Author : Corentin Wallez
    Date : 2016-10-25 07:43:33
    Hash : 7f07caa9
    Message : Rename the build/ directory. GYP related files went in gypfiles/, and the gni went in gni/ this changes frees up the build/ directory name for Chromium's build/ directory. BUG=angleproject:1569 Change-Id: I76fe343d569239c2732ba87986fcf7debc21d417 Reviewed-on: https://chromium-review.googlesource.com/403029 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • gyp/ANGLE.gyp
  • # 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:*',
                    '../src/tests/tests.gyp:*',
                ],
                'conditions':
                [
                    # Don't generate samples for WinRT
                    ['angle_build_winrt==0',
                    {
                        'dependencies':
                        [
                            '../samples/samples.gyp:*',
                        ],
                    }],
                ],
            },
        ],
    }