Edit

kc3-lang/angle/build/ANGLE.gyp

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2015-05-20 16:24:42
    Hash : 71799583
    Message : Fix ninja build warning on Linux. The 'all' target has a special meaning to ninja, and it would complain about having two 'all' targets. Fix this by using a capital 'a'. BUG=None Change-Id: I3ce2aab8df4bdfc8f49361f514881005547c51bf Reviewed-on: https://chromium-review.googlesource.com/272258 Tested-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>

  • build/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:*',
                ],
                'conditions':
                [
                    # Generate tests and sample projects for classic desktop
                    # builds only.
                    ['angle_build_winrt==0',
                    {
                        'dependencies':
                        [
                            '../samples/samples.gyp:*',
                            '../src/tests/tests.gyp:*',
                        ],
                    }],
                ],
            },
        ],
    }