Remove logging statements from SafeBrowsingBlockingPage
[chromium-blink-merge.git] / athena / athena.gyp
blob360dd1c646aec5cb666de94ff062822dc9341670
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         '../ui/aura/aura.gyp:aura',
15         '../ui/app_list/app_list.gyp:app_list',
16         '../ui/views/views.gyp:views',
17         '../ui/accessibility/accessibility.gyp:ax_gen',
18         '../skia/skia.gyp:skia',
19       ],
20       'defines': [
21         'ATHENA_IMPLEMENTATION',
22       ],
23       'sources': [
24         # All .cc, .h under athena, except unittests
25         'activity/activity.cc',
26         'activity/activity_factory.cc',
27         'activity/activity_manager_impl.cc',
28         'activity/activity_view_manager_impl.cc',
29         'activity/public/activity.h',
30         'activity/public/activity_factory.h',
31         'activity/public/activity_manager.h',
32         'activity/public/activity_view_manager.h',
33         'activity/public/activity_view_model.h',
34         # move athena_export.h to common/
35         'athena_export.h',
36         'common/switches.cc',
37         'common/switches.h',
38         'home/app_list_view_delegate.cc',
39         'home/app_list_view_delegate.h',
40         'home/home_card_impl.cc',
41         'home/public/app_model_builder.h',
42         'home/public/home_card.h',
43         'input/public/input_manager.h',
44         'input/public/accelerator_manager.h',
45         'input/input_manager_impl.cc',
46         'input/accelerator_manager_impl.cc',
47         'input/accelerator_manager_impl.h',
48         'screen/background_controller.cc',
49         'screen/background_controller.h',
50         'screen/public/screen_manager.h',
51         'screen/screen_accelerator_handler.cc',
52         'screen/screen_accelerator_handler.h',
53         'screen/screen_manager_impl.cc',
54         'wm/public/window_manager.h',
55         'wm/window_manager_impl.cc',
56         'wm/window_overview_mode.cc',
57         'wm/window_overview_mode.h',
58       ],
59     },
60     {
61       'target_name': 'athena_content_lib',
62       'type': 'static_library',
63       'dependencies': [
64         'athena_lib',
65         '../content/content.gyp:content_browser',
66         '../ui/app_list/app_list.gyp:app_list',
67         '../ui/views/controls/webview/webview.gyp:webview',
68         '../skia/skia.gyp:skia',
69       ],
70       'defines': [
71         'ATHENA_IMPLEMENTATION',
72       ],
73       'sources': [
74         'content/public/content_activity_factory.h',
75         'content/public/content_app_model_builder.h',
76         'content/content_activity_factory.cc',
77         'content/content_app_model_builder.cc',
78         'content/web_activity.h',
79         'content/web_activity.cc',
80       ],
81     },
82     {
83       'target_name': 'athena_test_support',
84       'type': 'static_library',
85       'dependencies': [
86         '../base/base.gyp:test_support_base',
87         '../skia/skia.gyp:skia',
88         '../testing/gtest.gyp:gtest',
89         '../ui/accessibility/accessibility.gyp:ax_gen',
90         '../ui/app_list/app_list.gyp:app_list',
91         '../ui/aura/aura.gyp:aura_test_support',
92         '../ui/base/ui_base.gyp:ui_base_test_support',
93         '../ui/compositor/compositor.gyp:compositor_test_support',
94         '../ui/views/views.gyp:views',
95         '../ui/wm/wm.gyp:wm',
96         '../url/url.gyp:url_lib',
97         'athena_lib',
98       ],
99       'sources': [
100         'main/athena_launcher.cc',
101         'main/athena_launcher.h',
102         'main/placeholder.cc',
103         'main/placeholder.h',
104         'test/athena_test_base.cc',
105         'test/athena_test_base.h',
106         'test/athena_test_helper.cc',
107         'test/athena_test_helper.h',
108         'test/sample_activity.cc',
109         'test/sample_activity.h',
110         'test/sample_activity_factory.cc',
111         'test/sample_activity_factory.h',
112         'test/test_app_model_builder.cc',
113         'test/test_app_model_builder.h',
114       ],
115     },
116     {
117       'target_name': 'athena_unittests',
118       'type': 'executable',
119       'dependencies': [
120         '../testing/gtest.gyp:gtest',
121         '../skia/skia.gyp:skia',
122         'athena_lib',
123         'athena_test_support',
124       ],
125       'sources': [
126         'test/athena_unittests.cc',
127         'activity/activity_manager_unittest.cc',
128         'input/accelerator_manager_unittest.cc',
129         'wm/window_manager_unittest.cc',
130       ],
131     }
132   ],