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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', | 64 'keyboard_controller_observer.h', |
65 'keyboard_controller_proxy.cc', | 65 'keyboard_controller_proxy.cc', |
66 'keyboard_controller_proxy.h', | 66 'keyboard_controller_proxy.h', |
67 'keyboard_export.h', | 67 'keyboard_export.h', |
68 'keyboard_switches.cc', | 68 'keyboard_switches.cc', |
69 'keyboard_switches.h', | 69 'keyboard_switches.h', |
70 'keyboard_ui_controller.cc', | |
71 'keyboard_ui_controller.h', | |
72 'keyboard_ui_handler.cc', | |
73 'keyboard_ui_handler.h', | |
74 'keyboard_util.cc', | 70 'keyboard_util.cc', |
75 'keyboard_util.h', | 71 'keyboard_util.h', |
76 ] | 72 ] |
77 }, | 73 }, |
78 { | 74 { |
79 'target_name': 'keyboard_unittests', | 75 'target_name': 'keyboard_unittests', |
80 'type': '<(gtest_target_type)', | 76 'type': '<(gtest_target_type)', |
81 'dependencies': [ | 77 'dependencies': [ |
82 '../../base/base.gyp:base', | 78 '../../base/base.gyp:base', |
83 '../../base/base.gyp:test_support_base', | 79 '../../base/base.gyp:test_support_base', |
(...skipping 27 matching lines...) Expand all Loading... |
111 }], | 107 }], |
112 ['OS=="win" and win_use_allocator_shim==1', { | 108 ['OS=="win" and win_use_allocator_shim==1', { |
113 'dependencies': [ | 109 'dependencies': [ |
114 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 110 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
115 ], | 111 ], |
116 }], | 112 }], |
117 ], | 113 ], |
118 }, | 114 }, |
119 ], | 115 ], |
120 } | 116 } |
OLD | NEW |