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/events/events.gyp:events_base', | 18 '../ui/events/events.gyp:events_base', |
19 '../ui/strings/ui_strings.gyp:ui_strings', | 19 '../ui/strings/ui_strings.gyp:ui_strings', |
20 '../ui/views/views.gyp:views', | 20 '../ui/views/views.gyp:views', |
21 'resources/athena_resources.gyp:athena_resources', | |
Jun Mukai
2014/08/13 16:55:13
can you remove the resources dependency from athen
sadrul
2014/08/13 19:25:29
I believe we would have to export_dependent_settin
| |
21 ], | 22 ], |
22 'defines': [ | 23 'defines': [ |
23 'ATHENA_IMPLEMENTATION', | 24 'ATHENA_IMPLEMENTATION', |
24 ], | 25 ], |
25 'sources': [ | 26 'sources': [ |
26 # All .cc, .h under athena, except unittests | 27 # All .cc, .h under athena, except unittests |
27 'activity/activity.cc', | 28 'activity/activity.cc', |
28 'activity/activity_factory.cc', | 29 'activity/activity_factory.cc', |
29 'activity/activity_manager_impl.cc', | 30 'activity/activity_manager_impl.cc', |
30 'activity/activity_view_manager_impl.cc', | 31 'activity/activity_view_manager_impl.cc', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 'screen/screen_accelerator_handler.h', | 67 'screen/screen_accelerator_handler.h', |
67 'screen/screen_manager_impl.cc', | 68 'screen/screen_manager_impl.cc', |
68 'system/power_button_controller.cc', | 69 'system/power_button_controller.cc', |
69 'system/power_button_controller.h', | 70 'system/power_button_controller.h', |
70 'system/public/system_ui.h', | 71 'system/public/system_ui.h', |
71 'system/system_ui_impl.cc', | 72 'system/system_ui_impl.cc', |
72 'wm/bezel_controller.cc', | 73 'wm/bezel_controller.cc', |
73 'wm/bezel_controller.h', | 74 'wm/bezel_controller.h', |
74 'wm/mru_window_tracker.cc', | 75 'wm/mru_window_tracker.cc', |
75 'wm/mru_window_tracker.h', | 76 'wm/mru_window_tracker.h', |
77 'wm/overview_toolbar.cc', | |
78 'wm/overview_toolbar.h', | |
76 'wm/public/window_list_provider.h', | 79 'wm/public/window_list_provider.h', |
77 'wm/public/window_manager.h', | 80 'wm/public/window_manager.h', |
78 'wm/public/window_manager_observer.h', | 81 'wm/public/window_manager_observer.h', |
79 'wm/split_view_controller.cc', | 82 'wm/split_view_controller.cc', |
80 'wm/split_view_controller.h', | 83 'wm/split_view_controller.h', |
81 'wm/title_drag_controller.cc', | 84 'wm/title_drag_controller.cc', |
82 'wm/title_drag_controller.h', | 85 'wm/title_drag_controller.h', |
83 'wm/window_manager_impl.cc', | 86 'wm/window_manager_impl.cc', |
84 'wm/window_overview_mode.cc', | 87 'wm/window_overview_mode.cc', |
85 'wm/window_overview_mode.h', | 88 'wm/window_overview_mode.h', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
172 'activity/activity_manager_unittest.cc', | 175 'activity/activity_manager_unittest.cc', |
173 'home/home_card_unittest.cc', | 176 'home/home_card_unittest.cc', |
174 'input/accelerator_manager_unittest.cc', | 177 'input/accelerator_manager_unittest.cc', |
175 'screen/screen_manager_unittest.cc', | 178 'screen/screen_manager_unittest.cc', |
176 'wm/window_manager_unittest.cc', | 179 'wm/window_manager_unittest.cc', |
177 ], | 180 ], |
178 } | 181 } |
179 ], | 182 ], |
180 } | 183 } |
181 | 184 |
OLD | NEW |