blob: fdb43e034c325654132dd11379d06ffc0e68aba4 [file] [log] [blame]
Jamie Madill1cfaaf82014-08-21 10:04:04 -04001# Copyright (c) 2014 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': 'angle_util',
14 'type': 'static_library',
15 'includes': [ '../build/common_defines.gypi', ],
16 'dependencies':
17 [
18 '../src/angle.gyp:libEGL',
19 '../src/angle.gyp:libGLESv2',
20 ],
21 'include_dirs':
22 [
23 '../include',
24 '.',
25 ],
26 'sources':
27 [
28 'keyboard.h',
29 'mouse.h',
30 'path_utils.h',
31 'EGLWindow.cpp',
32 'EGLWindow.h',
33 'Event.h',
34 'OSWindow.cpp',
35 'OSWindow.h',
36 'Timer.h',
37 'win32/Win32_path_utils.cpp',
38 'win32/Win32Timer.cpp',
39 'win32/Win32Timer.h',
40 'win32/Win32Window.cpp',
41 'win32/Win32Window.h',
42 ],
43 'msvs_disabled_warnings': [ 4201 ],
44 'direct_dependent_settings':
45 {
46 'include_dirs':
47 [
48 '.',
49 ],
50 },
51 },
52 ],
53 }],
54 ],
55}