OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 'keyboard_constants.cc', | 43 'keyboard_constants.cc', |
44 'keyboard_constants.h', | 44 'keyboard_constants.h', |
45 'keyboard_controller.cc', | 45 'keyboard_controller.cc', |
46 'keyboard_controller.h', | 46 'keyboard_controller.h', |
47 'keyboard_controller_proxy.h', | 47 'keyboard_controller_proxy.h', |
48 'keyboard_export.h', | 48 'keyboard_export.h', |
49 'keyboard_switches.cc', | 49 'keyboard_switches.cc', |
50 'keyboard_switches.h', | 50 'keyboard_switches.h', |
51 'keyboard_ui_controller.cc', | 51 'keyboard_ui_controller.cc', |
52 'keyboard_ui_controller.h', | 52 'keyboard_ui_controller.h', |
| 53 'keyboard_ui_handler.cc', |
| 54 'keyboard_ui_handler.h', |
53 'keyboard_util.cc', | 55 'keyboard_util.cc', |
54 'keyboard_util.h', | 56 'keyboard_util.h', |
55 ] | 57 ] |
56 }, | 58 }, |
57 { | 59 { |
58 'target_name': 'keyboard_unittests', | 60 'target_name': 'keyboard_unittests', |
59 'type': '<(gtest_target_type)', | 61 'type': '<(gtest_target_type)', |
60 'dependencies': [ | 62 'dependencies': [ |
61 '../../base/base.gyp:base', | 63 '../../base/base.gyp:base', |
62 '../../base/base.gyp:test_support_base', | 64 '../../base/base.gyp:test_support_base', |
(...skipping 19 matching lines...) Expand all Loading... |
82 'dependencies': [ | 84 'dependencies': [ |
83 '../../base/allocator/allocator.gyp:allocator', | 85 '../../base/allocator/allocator.gyp:allocator', |
84 ], | 86 ], |
85 }], | 87 }], |
86 ], | 88 ], |
87 }], | 89 }], |
88 ], | 90 ], |
89 }, | 91 }, |
90 ], | 92 ], |
91 } | 93 } |
OLD | NEW |