Hash :
5e5f990e
Author :
Date :
2013-10-08T11:46:54
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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
# 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',
],
},
},
},
],
},
],
],
}