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 # status_icon_container_view.cc depends on this. Remove this once there |
| 15 # are athena specific assets. |
| 16 '../ash/ash_resources.gyp:ash_resources', |
14 '../base/base.gyp:test_support_base', | 17 '../base/base.gyp:test_support_base', |
| 18 '../chromeos/chromeos.gyp:power_manager_proto', |
15 '../extensions/shell/app_shell.gyp:app_shell_version_header', | 19 '../extensions/shell/app_shell.gyp:app_shell_version_header', |
16 '../ipc/ipc.gyp:ipc', | 20 '../ipc/ipc.gyp:ipc', |
17 '../skia/skia.gyp:skia', | 21 '../skia/skia.gyp:skia', |
18 '../ui/accessibility/accessibility.gyp:ax_gen', | 22 '../ui/accessibility/accessibility.gyp:ax_gen', |
19 '../ui/app_list/app_list.gyp:app_list', | 23 '../ui/app_list/app_list.gyp:app_list', |
20 '../ui/aura/aura.gyp:aura', | 24 '../ui/aura/aura.gyp:aura', |
21 '../ui/aura/aura.gyp:aura_test_support', | 25 '../ui/aura/aura.gyp:aura_test_support', |
22 '../ui/events/events.gyp:events_base', | 26 '../ui/events/events.gyp:events_base', |
23 '../ui/strings/ui_strings.gyp:ui_strings', | 27 '../ui/strings/ui_strings.gyp:ui_strings', |
24 '../ui/views/views.gyp:views', | 28 '../ui/views/views.gyp:views', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'input/public/accelerator_manager.h', | 67 'input/public/accelerator_manager.h', |
64 'input/public/input_manager.h', | 68 'input/public/input_manager.h', |
65 'screen/background_controller.cc', | 69 'screen/background_controller.cc', |
66 'screen/background_controller.h', | 70 'screen/background_controller.h', |
67 'screen/public/screen_manager.h', | 71 'screen/public/screen_manager.h', |
68 'screen/screen_accelerator_handler.cc', | 72 'screen/screen_accelerator_handler.cc', |
69 'screen/screen_accelerator_handler.h', | 73 'screen/screen_accelerator_handler.h', |
70 'screen/screen_manager_impl.cc', | 74 'screen/screen_manager_impl.cc', |
71 'system/device_socket_listener.cc', | 75 'system/device_socket_listener.cc', |
72 'system/device_socket_listener.h', | 76 'system/device_socket_listener.h', |
| 77 'system/network_selector.cc', |
| 78 'system/network_selector.h', |
73 'system/orientation_controller.cc', | 79 'system/orientation_controller.cc', |
74 'system/orientation_controller.h', | 80 'system/orientation_controller.h', |
75 'system/power_button_controller.cc', | 81 'system/power_button_controller.cc', |
76 'system/power_button_controller.h', | 82 'system/power_button_controller.h', |
77 'system/public/system_ui.h', | 83 'system/status_icon_container_view.cc', |
| 84 'system/status_icon_container_view.h', |
| 85 'system/time_view.cc', |
| 86 'system/time_view.h', |
| 87 'system/public/system_ui.h', |
78 'system/system_ui_impl.cc', | 88 'system/system_ui_impl.cc', |
79 'wm/bezel_controller.cc', | 89 'wm/bezel_controller.cc', |
80 'wm/bezel_controller.h', | 90 'wm/bezel_controller.h', |
81 'wm/overview_toolbar.cc', | 91 'wm/overview_toolbar.cc', |
82 'wm/overview_toolbar.h', | 92 'wm/overview_toolbar.h', |
83 'wm/public/window_list_provider.h', | 93 'wm/public/window_list_provider.h', |
84 'wm/public/window_manager.h', | 94 'wm/public/window_manager.h', |
85 'wm/public/window_manager_observer.h', | 95 'wm/public/window_manager_observer.h', |
86 'wm/split_view_controller.cc', | 96 'wm/split_view_controller.cc', |
87 'wm/split_view_controller.h', | 97 'wm/split_view_controller.h', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 'input/accelerator_manager_unittest.cc', | 194 'input/accelerator_manager_unittest.cc', |
185 'screen/screen_manager_unittest.cc', | 195 'screen/screen_manager_unittest.cc', |
186 'wm/split_view_controller_unittest.cc', | 196 'wm/split_view_controller_unittest.cc', |
187 'wm/window_list_provider_impl_unittest.cc', | 197 'wm/window_list_provider_impl_unittest.cc', |
188 'wm/window_manager_unittest.cc', | 198 'wm/window_manager_unittest.cc', |
189 ], | 199 ], |
190 } | 200 } |
191 ], | 201 ], |
192 } | 202 } |
193 | 203 |
OLD | NEW |