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/app_list/app_list.gyp:app_list', | |
16 '../ui/views/views.gyp:views', | 15 '../ui/views/views.gyp:views', |
17 '../ui/accessibility/accessibility.gyp:ax_gen', | 16 '../ui/accessibility/accessibility.gyp:ax_gen', |
18 '../skia/skia.gyp:skia', | 17 '../skia/skia.gyp:skia', |
19 ], | 18 ], |
20 'defines': [ | 19 'defines': [ |
21 'ATHENA_IMPLEMENTATION', | 20 'ATHENA_IMPLEMENTATION', |
22 ], | 21 ], |
23 'sources': [ | 22 'sources': [ |
24 # All .cc, .h under athena, except unittests | 23 # All .cc, .h under athena, except unittests |
25 'athena_export.h', | 24 'athena_export.h', |
26 'home/app_list_view_delegate.cc', | 25 'home/home_card_delegate_view.cc', |
27 'home/app_list_view_delegate.h', | 26 'home/home_card_delegate_view.h', |
28 'home/home_card_impl.cc', | 27 'home/home_card_impl.cc', |
29 'home/public/home_card.h', | 28 'home/public/home_card.h', |
30 'screen/background_controller.cc', | 29 'screen/background_controller.cc', |
31 'screen/background_controller.h', | 30 'screen/background_controller.h', |
32 'screen/public/screen_manager.h', | 31 'screen/public/screen_manager.h', |
33 'screen/screen_manager_impl.cc', | 32 'screen/screen_manager_impl.cc', |
34 'activity/public/activity.h', | 33 'activity/public/activity.h', |
35 'activity/public/activity_manager.h', | 34 'activity/public/activity_manager.h', |
36 'activity/public/activity_view_manager.h', | 35 'activity/public/activity_view_manager.h', |
37 'activity/public/activity_view_model.h', | 36 'activity/public/activity_view_model.h', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'athena_test_support', | 75 'athena_test_support', |
77 ], | 76 ], |
78 'sources': [ | 77 'sources': [ |
79 'test/athena_unittests.cc', | 78 'test/athena_unittests.cc', |
80 'wm/window_manager_unittest.cc', | 79 'wm/window_manager_unittest.cc', |
81 ], | 80 ], |
82 } | 81 } |
83 ], | 82 ], |
84 } | 83 } |
85 | 84 |
OLD | NEW |