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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'defines': [ | 54 'defines': [ |
55 'KEYBOARD_IMPLEMENTATION', | 55 'KEYBOARD_IMPLEMENTATION', |
56 ], | 56 ], |
57 'sources': [ | 57 'sources': [ |
58 'keyboard.cc', | 58 'keyboard.cc', |
59 'keyboard.h', | 59 'keyboard.h', |
60 'keyboard_constants.cc', | 60 'keyboard_constants.cc', |
61 'keyboard_constants.h', | 61 'keyboard_constants.h', |
62 'keyboard_controller.cc', | 62 'keyboard_controller.cc', |
63 'keyboard_controller.h', | 63 'keyboard_controller.h', |
64 'keyboard_controller_observer.h', | |
65 'keyboard_controller_proxy.cc', | 64 'keyboard_controller_proxy.cc', |
66 'keyboard_controller_proxy.h', | 65 'keyboard_controller_proxy.h', |
67 'keyboard_layout_manager.h', | 66 'keyboard_layout_manager.h', |
68 'keyboard_layout_manager.cc', | 67 'keyboard_layout_manager.cc', |
69 'keyboard_export.h', | 68 'keyboard_export.h', |
70 'keyboard_switches.cc', | 69 'keyboard_switches.cc', |
71 'keyboard_switches.h', | 70 'keyboard_switches.h', |
72 'keyboard_ui_controller.cc', | 71 'keyboard_ui_controller.cc', |
73 'keyboard_ui_controller.h', | 72 'keyboard_ui_controller.h', |
74 'keyboard_ui_handler.cc', | 73 'keyboard_ui_handler.cc', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 }], | 112 }], |
114 ['OS=="win" and win_use_allocator_shim==1', { | 113 ['OS=="win" and win_use_allocator_shim==1', { |
115 'dependencies': [ | 114 'dependencies': [ |
116 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 115 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
117 ], | 116 ], |
118 }], | 117 }], |
119 ], | 118 ], |
120 }, | 119 }, |
121 ], | 120 ], |
122 } | 121 } |
OLD | NEW |