Edit

kc3-lang/angle/src/libEGL.gypi

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2013-10-08 11:46:54
    Hash : 5e5f990e
    Message : Merge 7692ca41dbfe20e6acf3319a37aa38b8160f51c6 from master. Remove %(AdditionalDependencies) from gyp linker deps, and add full windows dependency library list. ANGLEBUG=477 BUG= R=zmo@chromium.org Review URL: https://codereview.appspot.com/14161043

  • 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.
    
    {
        'conditions':
        [
            ['OS=="win"',
            {
                'targets':
                [
                    {
                        'target_name': 'libEGL',
                        'type': 'shared_library',
                        'dependencies': ['libGLESv2'],
                        'include_dirs':
                        [
                            '.',
                            '../include',
                            'libGLESv2',
                        ],
                        'defines':
                        [
                            'ANGLE_ENABLE_D3D_EVENTS',
                        ],
                        'sources': [ '<!@(python enumerate_files.py common libEGL -types *.cpp *.h *.def)' ],
                        'msvs_disabled_warnings': [ 4267 ],
                        'msvs_settings':
                        {
                            'VCLinkerTool':
                            {
                                'AdditionalDependencies':
                                [
                                    'd3d9.lib',
                                ],
                            },
                        },
                    },
                ],
            },
            ],
        ],
    }