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 { |
11 'target_name': 'athena_lib', | 11 'target_name': 'athena_lib', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
15 '../ui/accessibility/accessibility.gyp:ax_gen', | 15 '../ui/accessibility/accessibility.gyp:ax_gen', |
16 '../ui/app_list/app_list.gyp:app_list', | 16 '../ui/app_list/app_list.gyp:app_list', |
17 '../ui/aura/aura.gyp:aura', | 17 '../ui/aura/aura.gyp:aura', |
18 '../ui/strings/ui_strings.gyp:ui_strings', | 18 '../ui/strings/ui_strings.gyp:ui_strings', |
19 '../ui/views/views.gyp:views', | 19 '../ui/views/views.gyp:views', |
20 ], | 20 ], |
21 'defines': [ | 21 'defines': [ |
22 'ATHENA_IMPLEMENTATION', | 22 'ATHENA_IMPLEMENTATION', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 # All .cc, .h under athena, except unittests | 25 # All .cc, .h under athena, except unittests |
26 'activity/activity.cc', | 26 'activity/activity.cc', |
27 'activity/activity_factory.cc', | 27 'activity/activity_factory.cc', |
28 'activity/activity_manager_impl.cc', | 28 'activity/activity_manager_impl.cc', |
29 'activity/activity_view_manager_impl.cc', | 29 'activity/activity_view_manager_impl.cc', |
| 30 'activity/activity_frame_view.cc', |
| 31 'activity/activity_frame_view.h', |
| 32 'activity/activity_widget_delegate.cc', |
| 33 'activity/activity_widget_delegate.h', |
30 'activity/public/activity.h', | 34 'activity/public/activity.h', |
31 'activity/public/activity_factory.h', | 35 'activity/public/activity_factory.h', |
32 'activity/public/activity_manager.h', | 36 'activity/public/activity_manager.h', |
33 'activity/public/activity_view_manager.h', | 37 'activity/public/activity_view_manager.h', |
34 'activity/public/activity_view_model.h', | 38 'activity/public/activity_view_model.h', |
35 'common/athena_export.h', | 39 'common/athena_export.h', |
36 'common/fill_layout_manager.cc', | 40 'common/fill_layout_manager.cc', |
37 'common/fill_layout_manager.h', | 41 'common/fill_layout_manager.h', |
38 'common/switches.cc', | 42 'common/switches.cc', |
39 'common/switches.h', | 43 'common/switches.h', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 'sources': [ | 145 'sources': [ |
142 'test/athena_unittests.cc', | 146 'test/athena_unittests.cc', |
143 'activity/activity_manager_unittest.cc', | 147 'activity/activity_manager_unittest.cc', |
144 'input/accelerator_manager_unittest.cc', | 148 'input/accelerator_manager_unittest.cc', |
145 'wm/window_manager_unittest.cc', | 149 'wm/window_manager_unittest.cc', |
146 ], | 150 ], |
147 } | 151 } |
148 ], | 152 ], |
149 } | 153 } |
150 | 154 |
OLD | NEW |