blob: 33bd007c2f6980aa5bda04d16c637a82a4293299 [file] [log] [blame]
Geoff Lang39d51662013-08-29 16:08:23 -04001# Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'conditions':
7 [
8 ['OS=="win"',
9 {
10 'targets':
11 [
12 {
13 'target_name': 'libEGL',
14 'type': 'shared_library',
15 'dependencies': ['libGLESv2'],
16 'include_dirs':
17 [
18 '.',
19 '../include',
20 'libGLESv2',
21 ],
22 'sources': [ '<!@(python enumerate_files.py common libEGL -types *.cpp *.h *.def)' ],
23 'msvs_disabled_warnings': [ 4267 ],
24 'msvs_settings':
25 {
26 'VCLinkerTool':
27 {
28 'AdditionalDependencies':
29 [
30 'd3d9.lib',
31 '%(AdditionalDependencies)',
32 ],
33 },
34 },
35 },
36 ],
37 },
38 ],
39 ],
40}