Fix build break
[chromium-blink-merge.git] / ui / keyboard / keyboard.gyp
blobadd01e50f98b24477d3165ba7e9d1ed3f84098b6
1 # Copyright (c) 2013 The Chromium 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.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'keyboard',
12       'type': '<(component)',
13       'dependencies': [
14         '../../base/base.gyp:base',
15         '../../skia/skia.gyp:skia',
16         '../aura/aura.gyp:aura',
17         '../compositor/compositor.gyp:compositor',
18         '../ui.gyp:ui',
19       ],
20       'defines': [
21         'KEYBOARD_IMPLEMENTATION',
22       ],
23       'sources': [
24         'keyboard_controller.cc',
25         'keyboard_controller.h',
26         'keyboard_controller_proxy.h',
27         'keyboard_export.h',
28         'keyboard_switches.cc',
29         'keyboard_switches.h',
30         'keyboard_util.cc',
31         'keyboard_util.h',
32       ]
33     },
34     {
35       'target_name': 'keyboard_unittests',
36       'type': 'executable',
37       'dependencies': [
38         '../../base/base.gyp:base',
39         '../../base/base.gyp:test_support_base',
40         '../../skia/skia.gyp:skia',
41         '../../testing/gtest.gyp:gtest',
42         '../aura/aura.gyp:aura',
43         '../aura/aura.gyp:aura_test_support',
44         '../compositor/compositor.gyp:compositor',
45         '../compositor/compositor.gyp:compositor_test_support',
46         '../ui.gyp:run_ui_unittests',
47         '../ui.gyp:ui',
48         'keyboard',
49       ],
50       'sources': [
51         'keyboard_controller_unittest.cc',
52         'keyboard_test_suite.cc',
53       ],
54     },
55   ],