[NaCl SDK]: Docs -- fix typo in nacl manifest specification (missing "portable")
[chromium-blink-merge.git] / athena / athena.gyp
blobeba1d8f772d8125648fc93d2c4a68f03e58d0c92
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
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'athena_lib',
12       'type': '<(component)',
13       'dependencies': [
14         '../skia/skia.gyp:skia',
15         '../ui/accessibility/accessibility.gyp:ax_gen',
16         '../ui/app_list/app_list.gyp:app_list',
17         '../ui/aura/aura.gyp:aura',
18         '../ui/strings/ui_strings.gyp:ui_strings',
19         '../ui/views/views.gyp:views',
20       ],
21       'defines': [
22         'ATHENA_IMPLEMENTATION',
23       ],
24       'sources': [
25         # All .cc, .h under athena, except unittests
26         'activity/activity.cc',
27         'activity/activity_factory.cc',
28         'activity/activity_manager_impl.cc',
29         'activity/activity_view_manager_impl.cc',
30         'activity/activity_frame_view.cc',
31         'activity/activity_frame_view.h',
32         'activity/activity_widget_delegate.cc',
33         'activity/activity_widget_delegate.h',
34         'activity/public/activity.h',
35         'activity/public/activity_factory.h',
36         'activity/public/activity_manager.h',
37         'activity/public/activity_view_manager.h',
38         'activity/public/activity_view_model.h',
39         # move athena_export.h to common/
40         'athena_export.h',
41         'common/fill_layout_manager.cc',
42         'common/fill_layout_manager.h',
43         'common/switches.cc',
44         'common/switches.h',
45         'home/app_list_view_delegate.cc',
46         'home/app_list_view_delegate.h',
47         'home/home_card_impl.cc',
48         'home/public/app_model_builder.h',
49         'home/public/home_card.h',
50         'input/accelerator_manager_impl.cc',
51         'input/accelerator_manager_impl.h',
52         'input/input_manager_impl.cc',
53         'input/public/input_manager.h',
54         'input/public/accelerator_manager.h',
55         'screen/background_controller.cc',
56         'screen/background_controller.h',
57         'screen/public/screen_manager.h',
58         'screen/screen_accelerator_handler.cc',
59         'screen/screen_accelerator_handler.h',
60         'screen/screen_manager_impl.cc',
61         'wm/public/window_manager.h',
62         'wm/window_manager_impl.cc',
63         'wm/window_overview_mode.cc',
64         'wm/window_overview_mode.h',
65       ],
66     },
67     {
68       'target_name': 'athena_content_lib',
69       'type': 'static_library',
70       'dependencies': [
71         'athena_lib',
72         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
73         '../content/content.gyp:content_browser',
74         '../ui/app_list/app_list.gyp:app_list',
75         '../ui/keyboard/keyboard.gyp:keyboard',
76         '../ui/keyboard/keyboard.gyp:keyboard_resources',
77         '../third_party/WebKit/public/blink.gyp:blink',
78         '../ui/views/controls/webview/webview.gyp:webview',
79         '../skia/skia.gyp:skia',
80       ],
81       'defines': [
82         'ATHENA_IMPLEMENTATION',
83       ],
84       'sources': [
85         'content/public/content_activity_factory.h',
86         'content/public/content_app_model_builder.h',
87         'content/content_activity_factory.cc',
88         'content/content_app_model_builder.cc',
89         'content/app_activity.h',
90         'content/app_activity.cc',
91         'content/web_activity.h',
92         'content/web_activity.cc',
93         'virtual_keyboard/public/virtual_keyboard_bindings.h',
94         'virtual_keyboard/public/virtual_keyboard_manager.h',
95         'virtual_keyboard/virtual_keyboard_bindings_impl.cc',
96         'virtual_keyboard/virtual_keyboard_manager_impl.cc',
97         'virtual_keyboard/vk_message_handler.cc',
98         'virtual_keyboard/vk_message_handler.h',
99         'virtual_keyboard/vk_webui_controller.cc',
100         'virtual_keyboard/vk_webui_controller.h',
101       ],
102     },
103     {
104       'target_name': 'athena_test_support',
105       'type': 'static_library',
106       'dependencies': [
107         '../base/base.gyp:test_support_base',
108         '../skia/skia.gyp:skia',
109         '../testing/gtest.gyp:gtest',
110         '../ui/accessibility/accessibility.gyp:ax_gen',
111         '../ui/app_list/app_list.gyp:app_list',
112         '../ui/aura/aura.gyp:aura_test_support',
113         '../ui/base/ui_base.gyp:ui_base_test_support',
114         '../ui/compositor/compositor.gyp:compositor_test_support',
115         '../ui/views/views.gyp:views',
116         '../ui/wm/wm.gyp:wm',
117         '../url/url.gyp:url_lib',
118         'athena_lib',
119       ],
120       'sources': [
121         'main/athena_launcher.cc',
122         'main/athena_launcher.h',
123         'main/placeholder.cc',
124         'main/placeholder.h',
125         'test/athena_test_base.cc',
126         'test/athena_test_base.h',
127         'test/athena_test_helper.cc',
128         'test/athena_test_helper.h',
129         'test/sample_activity.cc',
130         'test/sample_activity.h',
131         'test/sample_activity_factory.cc',
132         'test/sample_activity_factory.h',
133         'test/test_app_model_builder.cc',
134         'test/test_app_model_builder.h',
135       ],
136     },
137     {
138       'target_name': 'athena_unittests',
139       'type': 'executable',
140       'dependencies': [
141         '../testing/gtest.gyp:gtest',
142         '../skia/skia.gyp:skia',
143         'athena_lib',
144         'athena_test_support',
145       ],
146       'sources': [
147         'test/athena_unittests.cc',
148         'activity/activity_manager_unittest.cc',
149         'input/accelerator_manager_unittest.cc',
150         'wm/window_manager_unittest.cc',
151       ],
152     }
153   ],