| 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 '../base/base.gyp:test_support_base', |
| 14 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
| 15 '../ui/accessibility/accessibility.gyp:ax_gen', | 16 '../ui/accessibility/accessibility.gyp:ax_gen', |
| 16 '../ui/app_list/app_list.gyp:app_list', | 17 '../ui/app_list/app_list.gyp:app_list', |
| 17 '../ui/aura/aura.gyp:aura', | 18 '../ui/aura/aura.gyp:aura', |
| 19 '../ui/aura/aura.gyp:aura_test_support', |
| 18 '../ui/strings/ui_strings.gyp:ui_strings', | 20 '../ui/strings/ui_strings.gyp:ui_strings', |
| 19 '../ui/views/views.gyp:views', | 21 '../ui/views/views.gyp:views', |
| 20 ], | 22 ], |
| 21 'defines': [ | 23 'defines': [ |
| 22 'ATHENA_IMPLEMENTATION', | 24 'ATHENA_IMPLEMENTATION', |
| 23 ], | 25 ], |
| 24 'sources': [ | 26 'sources': [ |
| 25 # All .cc, .h under athena, except unittests | 27 # All .cc, .h under athena, except unittests |
| 26 'activity/activity.cc', | 28 'activity/activity.cc', |
| 27 'activity/activity_factory.cc', | 29 'activity/activity_factory.cc', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 55 'input/accelerator_manager_impl.h', | 57 'input/accelerator_manager_impl.h', |
| 56 'input/input_manager_impl.cc', | 58 'input/input_manager_impl.cc', |
| 57 'input/public/accelerator_manager.h', | 59 'input/public/accelerator_manager.h', |
| 58 'input/public/input_manager.h', | 60 'input/public/input_manager.h', |
| 59 'screen/background_controller.cc', | 61 'screen/background_controller.cc', |
| 60 'screen/background_controller.h', | 62 'screen/background_controller.h', |
| 61 'screen/public/screen_manager.h', | 63 'screen/public/screen_manager.h', |
| 62 'screen/screen_accelerator_handler.cc', | 64 'screen/screen_accelerator_handler.cc', |
| 63 'screen/screen_accelerator_handler.h', | 65 'screen/screen_accelerator_handler.h', |
| 64 'screen/screen_manager_impl.cc', | 66 'screen/screen_manager_impl.cc', |
| 67 'system/device_socket_listener.cc', |
| 68 'system/device_socket_listener.h', |
| 69 'system/orientation_controller.cc', |
| 70 'system/orientation_controller.h', |
| 65 'system/power_button_controller.cc', | 71 'system/power_button_controller.cc', |
| 66 'system/power_button_controller.h', | 72 'system/power_button_controller.h', |
| 67 'system/public/system_ui.h', | 73 'system/public/system_ui.h', |
| 68 'system/system_ui_impl.cc', | 74 'system/system_ui_impl.cc', |
| 69 'wm/public/window_manager.h', | 75 'wm/public/window_manager.h', |
| 70 'wm/public/window_manager_observer.h', | 76 'wm/public/window_manager_observer.h', |
| 71 'wm/bezel_controller.cc', | 77 'wm/bezel_controller.cc', |
| 72 'wm/bezel_controller.h', | 78 'wm/bezel_controller.h', |
| 73 'wm/split_view_controller.cc', | 79 'wm/split_view_controller.cc', |
| 74 'wm/split_view_controller.h', | 80 'wm/split_view_controller.h', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'activity/activity_manager_unittest.cc', | 169 'activity/activity_manager_unittest.cc', |
| 164 'home/home_card_unittest.cc', | 170 'home/home_card_unittest.cc', |
| 165 'input/accelerator_manager_unittest.cc', | 171 'input/accelerator_manager_unittest.cc', |
| 166 'screen/screen_manager_unittest.cc', | 172 'screen/screen_manager_unittest.cc', |
| 167 'wm/window_manager_unittest.cc', | 173 'wm/window_manager_unittest.cc', |
| 168 ], | 174 ], |
| 169 } | 175 } |
| 170 ], | 176 ], |
| 171 } | 177 } |
| 172 | 178 |
| OLD | NEW |