| 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 '../ui/aura/aura.gyp:aura', | 14 '../ui/aura/aura.gyp:aura', |
| 15 '../ui/views/views.gyp:views', | 15 '../ui/views/views.gyp:views', |
| 16 '../ui/accessibility/accessibility.gyp:ax_gen', | 16 '../ui/accessibility/accessibility.gyp:ax_gen', |
| 17 '../skia/skia.gyp:skia', | 17 '../skia/skia.gyp:skia', |
| 18 ], | 18 ], |
| 19 'defines': [ | 19 'defines': [ |
| 20 'ATHENA_IMPLEMENTATION', | 20 'ATHENA_IMPLEMENTATION', |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 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 'input/public/input_manager.h', |
| 30 'input/public/accelerator_manager.h', |
| 31 'input/input_manager_impl.cc', |
| 32 'input/accelerator_manager_impl.cc', |
| 33 'input/accelerator_manager_impl.h', |
| 29 'screen/background_controller.cc', | 34 'screen/background_controller.cc', |
| 30 'screen/background_controller.h', | 35 'screen/background_controller.h', |
| 31 'screen/public/screen_manager.h', | 36 'screen/public/screen_manager.h', |
| 32 'screen/screen_manager_impl.cc', | 37 'screen/screen_manager_impl.cc', |
| 33 'activity/public/activity.h', | 38 'activity/public/activity.h', |
| 34 'activity/public/activity_manager.h', | 39 'activity/public/activity_manager.h', |
| 35 'activity/public/activity_view_manager.h', | 40 'activity/public/activity_view_manager.h', |
| 36 'activity/public/activity_view_model.h', | 41 'activity/public/activity_view_model.h', |
| 37 'activity/activity_manager_impl.cc', | 42 'activity/activity_manager_impl.cc', |
| 38 'activity/activity_view_manager_impl.cc', | 43 'activity/activity_view_manager_impl.cc', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 69 { | 74 { |
| 70 'target_name': 'athena_unittests', | 75 'target_name': 'athena_unittests', |
| 71 'type': 'executable', | 76 'type': 'executable', |
| 72 'dependencies': [ | 77 'dependencies': [ |
| 73 '../testing/gtest.gyp:gtest', | 78 '../testing/gtest.gyp:gtest', |
| 74 'athena_lib', | 79 'athena_lib', |
| 75 'athena_test_support', | 80 'athena_test_support', |
| 76 ], | 81 ], |
| 77 'sources': [ | 82 'sources': [ |
| 78 'test/athena_unittests.cc', | 83 'test/athena_unittests.cc', |
| 84 'input/accelerator_manager_unittest.cc', |
| 79 'wm/window_manager_unittest.cc', | 85 'wm/window_manager_unittest.cc', |
| 80 ], | 86 ], |
| 81 } | 87 } |
| 82 ], | 88 ], |
| 83 } | 89 } |
| 84 | 90 |
| OLD | NEW |