| 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 'activity/activity.cc', |
| 24 'activity/activity_factory.cc', | 25 'activity/activity_factory.cc', |
| 25 'activity/activity_manager_impl.cc', | 26 'activity/activity_manager_impl.cc', |
| 26 'activity/activity_view_manager_impl.cc', | 27 'activity/activity_view_manager_impl.cc', |
| 27 'activity/public/activity.h', | 28 'activity/public/activity.h', |
| 28 'activity/public/activity_factory.h', | 29 'activity/public/activity_factory.h', |
| 29 'activity/public/activity_manager.h', | 30 'activity/public/activity_manager.h', |
| 30 'activity/public/activity_view_manager.h', | 31 'activity/public/activity_view_manager.h', |
| 31 'activity/public/activity_view_model.h', | 32 'activity/public/activity_view_model.h', |
| 32 'athena_export.h', | 33 'athena_export.h', |
| 33 'home/home_card_delegate_view.cc', | 34 'home/home_card_delegate_view.cc', |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 'athena_test_support', | 97 'athena_test_support', |
| 97 ], | 98 ], |
| 98 'sources': [ | 99 'sources': [ |
| 99 'test/athena_unittests.cc', | 100 'test/athena_unittests.cc', |
| 100 'wm/window_manager_unittest.cc', | 101 'wm/window_manager_unittest.cc', |
| 101 ], | 102 ], |
| 102 } | 103 } |
| 103 ], | 104 ], |
| 104 } | 105 } |
| 105 | 106 |
| OLD | NEW |