Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / angle / util / util.gyp
1 # 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                         'random_utils.cpp',
32                         'random_utils.h',
33                         'shader_utils.cpp',
34                         'shader_utils.h',
35                         'shared_utils.h',
36                         'EGLWindow.cpp',
37                         'EGLWindow.h',
38                         'Event.h',
39                         'OSWindow.cpp',
40                         'OSWindow.h',
41                         'Timer.h',
42                         'win32/Win32_path_utils.cpp',
43                         'win32/Win32Timer.cpp',
44                         'win32/Win32Timer.h',
45                         'win32/Win32Window.cpp',
46                         'win32/Win32Window.h',
47                     ],
48                     'msvs_disabled_warnings': [ 4201 ],
49                     'direct_dependent_settings':
50                     {
51                         'include_dirs':
52                         [
53                             '.',
54                         ],
55                     },
56                 },
57             ],
58         }],
59     ],
60 }