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 12 matching lines...) Expand all Loading... |
23 # All .cc, .h under athena, except unittests | 23 # All .cc, .h under athena, except unittests |
24 'athena_export.h', | 24 'athena_export.h', |
25 'home/home_card_delegate_view.cc', | 25 'home/home_card_delegate_view.cc', |
26 'home/home_card_delegate_view.h', | 26 'home/home_card_delegate_view.h', |
27 'home/home_card_impl.cc', | 27 'home/home_card_impl.cc', |
28 'home/public/home_card.h', | 28 'home/public/home_card.h', |
29 'screen/background_controller.cc', | 29 'screen/background_controller.cc', |
30 'screen/background_controller.h', | 30 'screen/background_controller.h', |
31 'screen/public/screen_manager.h', | 31 'screen/public/screen_manager.h', |
32 'screen/screen_manager_impl.cc', | 32 'screen/screen_manager_impl.cc', |
| 33 'activity/public/activity.h', |
| 34 'activity/public/activity_manager.h', |
| 35 'activity/public/activity_view_manager.h', |
| 36 'activity/public/activity_view_model.h', |
| 37 'activity/activity_manager_impl.cc', |
| 38 'activity/activity_view_manager_impl.cc', |
33 'wm/public/window_manager.h', | 39 'wm/public/window_manager.h', |
34 'wm/window_manager_impl.cc', | 40 'wm/window_manager_impl.cc', |
35 ], | 41 ], |
36 }, | 42 }, |
37 { | 43 { |
38 'target_name': 'athena_test_support', | 44 'target_name': 'athena_test_support', |
39 'type': 'static_library', | 45 'type': 'static_library', |
40 'dependencies': [ | 46 'dependencies': [ |
41 '../base/base.gyp:test_support_base', | 47 '../base/base.gyp:test_support_base', |
42 '../skia/skia.gyp:skia', | 48 '../skia/skia.gyp:skia', |
(...skipping 26 matching lines...) Expand all Loading... |
69 'athena_test_support', | 75 'athena_test_support', |
70 ], | 76 ], |
71 'sources': [ | 77 'sources': [ |
72 'test/athena_unittests.cc', | 78 'test/athena_unittests.cc', |
73 'wm/window_manager_unittest.cc', | 79 'wm/window_manager_unittest.cc', |
74 ], | 80 ], |
75 } | 81 } |
76 ], | 82 ], |
77 } | 83 } |
78 | 84 |
OLD | NEW |