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 13 matching lines...) Expand all Loading... |
24 # All .cc, .h under athena, except unittests | 24 # All .cc, .h under athena, except unittests |
25 'activity/activity.cc', | 25 'activity/activity.cc', |
26 'activity/activity_factory.cc', | 26 'activity/activity_factory.cc', |
27 'activity/activity_manager_impl.cc', | 27 'activity/activity_manager_impl.cc', |
28 'activity/activity_view_manager_impl.cc', | 28 'activity/activity_view_manager_impl.cc', |
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 # move athena_export.h to common/ |
34 'athena_export.h', | 35 'athena_export.h', |
| 36 'common/switches.cc', |
| 37 'common/switches.h', |
35 'home/app_list_view_delegate.cc', | 38 'home/app_list_view_delegate.cc', |
36 'home/app_list_view_delegate.h', | 39 'home/app_list_view_delegate.h', |
37 'home/home_card_impl.cc', | 40 'home/home_card_impl.cc', |
38 'home/public/home_card.h', | 41 'home/public/home_card.h', |
39 'input/public/input_manager.h', | 42 'input/public/input_manager.h', |
40 'input/public/accelerator_manager.h', | 43 'input/public/accelerator_manager.h', |
41 'input/input_manager_impl.cc', | 44 'input/input_manager_impl.cc', |
42 'input/accelerator_manager_impl.cc', | 45 'input/accelerator_manager_impl.cc', |
43 'input/accelerator_manager_impl.h', | 46 'input/accelerator_manager_impl.h', |
44 'screen/background_controller.cc', | 47 'screen/background_controller.cc', |
45 'screen/background_controller.h', | 48 'screen/background_controller.h', |
46 'screen/public/screen_manager.h', | 49 'screen/public/screen_manager.h', |
| 50 'screen/screen_accelerator_handler.cc', |
| 51 'screen/screen_accelerator_handler.h', |
47 'screen/screen_manager_impl.cc', | 52 'screen/screen_manager_impl.cc', |
48 'wm/public/window_manager.h', | 53 'wm/public/window_manager.h', |
49 'wm/window_manager_impl.cc', | 54 'wm/window_manager_impl.cc', |
50 'wm/window_overview_mode.cc', | 55 'wm/window_overview_mode.cc', |
51 'wm/window_overview_mode.h', | 56 'wm/window_overview_mode.h', |
52 ], | 57 ], |
53 }, | 58 }, |
54 { | 59 { |
55 'target_name': 'athena_content_lib', | 60 'target_name': 'athena_content_lib', |
56 'type': '<(component)', | 61 'type': '<(component)', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 'test/sample_activity.h', | 104 'test/sample_activity.h', |
100 'test/sample_activity_factory.cc', | 105 'test/sample_activity_factory.cc', |
101 'test/sample_activity_factory.h', | 106 'test/sample_activity_factory.h', |
102 ], | 107 ], |
103 }, | 108 }, |
104 { | 109 { |
105 'target_name': 'athena_unittests', | 110 'target_name': 'athena_unittests', |
106 'type': 'executable', | 111 'type': 'executable', |
107 'dependencies': [ | 112 'dependencies': [ |
108 '../testing/gtest.gyp:gtest', | 113 '../testing/gtest.gyp:gtest', |
| 114 '../skia/skia.gyp:skia', |
109 'athena_lib', | 115 'athena_lib', |
110 'athena_test_support', | 116 'athena_test_support', |
111 ], | 117 ], |
112 'sources': [ | 118 'sources': [ |
113 'test/athena_unittests.cc', | 119 'test/athena_unittests.cc', |
114 'activity/activity_manager_unittest.cc', | 120 'activity/activity_manager_unittest.cc', |
115 'input/accelerator_manager_unittest.cc', | 121 'input/accelerator_manager_unittest.cc', |
116 'wm/window_manager_unittest.cc', | 122 'wm/window_manager_unittest.cc', |
117 ], | 123 ], |
118 } | 124 } |
119 ], | 125 ], |
120 } | 126 } |
121 | 127 |
OLD | NEW |