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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 'defines': [ | 50 'defines': [ |
51 'KEYBOARD_IMPLEMENTATION', | 51 'KEYBOARD_IMPLEMENTATION', |
52 ], | 52 ], |
53 'sources': [ | 53 'sources': [ |
54 'keyboard.cc', | 54 'keyboard.cc', |
55 'keyboard.h', | 55 'keyboard.h', |
56 'keyboard_constants.cc', | 56 'keyboard_constants.cc', |
57 'keyboard_constants.h', | 57 'keyboard_constants.h', |
58 'keyboard_controller.cc', | 58 'keyboard_controller.cc', |
59 'keyboard_controller.h', | 59 'keyboard_controller.h', |
| 60 'keyboard_controller_observer.h', |
60 'keyboard_controller_proxy.cc', | 61 'keyboard_controller_proxy.cc', |
61 'keyboard_controller_proxy.h', | 62 'keyboard_controller_proxy.h', |
62 'keyboard_export.h', | 63 'keyboard_export.h', |
63 'keyboard_switches.cc', | 64 'keyboard_switches.cc', |
64 'keyboard_switches.h', | 65 'keyboard_switches.h', |
65 'keyboard_ui_controller.cc', | 66 'keyboard_ui_controller.cc', |
66 'keyboard_ui_controller.h', | 67 'keyboard_ui_controller.h', |
67 'keyboard_ui_handler.cc', | 68 'keyboard_ui_handler.cc', |
68 'keyboard_ui_handler.h', | 69 'keyboard_ui_handler.h', |
69 'keyboard_util.cc', | 70 'keyboard_util.cc', |
(...skipping 28 matching lines...) Expand all Loading... |
98 'dependencies': [ | 99 'dependencies': [ |
99 '../../base/allocator/allocator.gyp:allocator', | 100 '../../base/allocator/allocator.gyp:allocator', |
100 ], | 101 ], |
101 }], | 102 }], |
102 ], | 103 ], |
103 }], | 104 }], |
104 ], | 105 ], |
105 }, | 106 }, |
106 ], | 107 ], |
107 } | 108 } |
OLD | NEW |