Edit

kc3-lang/angle/src/libEGL.gypi

Branch :

  • Show log

    Commit

  • Author : Cooper Partin
    Date : 2015-08-13 10:22:42
    Hash : 66d6313e
    Message : Add target platform version for generating Windows 10 WinRT projects BUG=angleproject:1122 Change-Id: Ia6a79ef1b4e94e15830981f0cee6269c9f0c71ca Reviewed-on: https://chromium-review.googlesource.com/293401 Tested-by: Cooper Partin <coopp@microsoft.com> Reviewed-by: Geoff Lang <geofflang@chromium.org>

  • src/libEGL.gypi
  • # Copyright (c) 2013 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.
    
    {
        # Everything below this is duplicated in the GN build. If you change
        # anything also change angle/BUILD.gn
        'targets':
        [
            {
                'target_name': 'libEGL',
                'type': '<(angle_gl_library_type)',
                'dependencies':
                [
                    'libANGLE',
                    'libGLESv2',
                ],
                'includes':
                [
                    '../build/common_defines.gypi',
                ],
                'include_dirs':
                [
                    '.',
                    '../include',
                ],
                'sources':
                [
                    '<@(libegl_sources)',
                ],
                'conditions':
                [
                    ['angle_build_winrt==1',
                    {
                        'msvs_requires_importlibrary' : 'true',
                        'msvs_settings':
                        {
                            'VCLinkerTool':
                            {
                                'EnableCOMDATFolding': '1',
                                'OptimizeReferences': '1',
                            }
                        },
                    }],
                ],
            },
        ],
    }