OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 18 matching lines...) Expand all Loading... |
29 'activity/public/activity.h', | 29 'activity/public/activity.h', |
30 'activity/public/activity_factory.h', | 30 'activity/public/activity_factory.h', |
31 'activity/public/activity_manager.h', | 31 'activity/public/activity_manager.h', |
32 'activity/public/activity_view_manager.h', | 32 'activity/public/activity_view_manager.h', |
33 'activity/public/activity_view_model.h', | 33 'activity/public/activity_view_model.h', |
34 'athena_export.h', | 34 'athena_export.h', |
35 'home/app_list_view_delegate.cc', | 35 'home/app_list_view_delegate.cc', |
36 'home/app_list_view_delegate.h', | 36 'home/app_list_view_delegate.h', |
37 'home/home_card_impl.cc', | 37 'home/home_card_impl.cc', |
38 'home/public/home_card.h', | 38 'home/public/home_card.h', |
| 39 'input/public/input_manager.h', |
| 40 'input/public/accelerator_manager.h', |
| 41 'input/input_manager_impl.cc', |
| 42 'input/accelerator_manager_impl.cc', |
| 43 'input/accelerator_manager_impl.h', |
39 'screen/background_controller.cc', | 44 'screen/background_controller.cc', |
40 'screen/background_controller.h', | 45 'screen/background_controller.h', |
41 'screen/public/screen_manager.h', | 46 'screen/public/screen_manager.h', |
42 'screen/screen_manager_impl.cc', | 47 'screen/screen_manager_impl.cc', |
43 'wm/public/window_manager.h', | 48 'wm/public/window_manager.h', |
44 'wm/window_manager_impl.cc', | 49 'wm/window_manager_impl.cc', |
45 'wm/window_overview_mode.cc', | 50 'wm/window_overview_mode.cc', |
46 'wm/window_overview_mode.h', | 51 'wm/window_overview_mode.h', |
47 ], | 52 ], |
48 }, | 53 }, |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 { | 102 { |
98 'target_name': 'athena_unittests', | 103 'target_name': 'athena_unittests', |
99 'type': 'executable', | 104 'type': 'executable', |
100 'dependencies': [ | 105 'dependencies': [ |
101 '../testing/gtest.gyp:gtest', | 106 '../testing/gtest.gyp:gtest', |
102 'athena_lib', | 107 'athena_lib', |
103 'athena_test_support', | 108 'athena_test_support', |
104 ], | 109 ], |
105 'sources': [ | 110 'sources': [ |
106 'test/athena_unittests.cc', | 111 'test/athena_unittests.cc', |
| 112 'input/accelerator_manager_unittest.cc', |
107 'wm/window_manager_unittest.cc', | 113 'wm/window_manager_unittest.cc', |
108 ], | 114 ], |
109 } | 115 } |
110 ], | 116 ], |
111 } | 117 } |
112 | 118 |
OLD | NEW |