1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'targets': [
{
'target_name': 'athena_lib',
'type': '<(component)',
'dependencies': [
'../ui/aura/aura.gyp:aura',
'../ui/views/views.gyp:views',
'../ui/accessibility/accessibility.gyp:ax_gen',
'../skia/skia.gyp:skia',
],
'defines': [
'ATHENA_IMPLEMENTATION',
],
'sources': [
# All .cc, .h under athena, except unittests
'athena_export.h',
'home/home_card_delegate_view.cc',
'home/home_card_delegate_view.h',
'home/home_card_impl.cc',
'home/public/home_card.h',
'screen/background_controller.cc',
'screen/background_controller.h',
'screen/public/screen_manager.h',
'screen/screen_manager_impl.cc',
'activity/public/activity.h',
'activity/public/activity_manager.h',
'activity/public/activity_view_manager.h',
'activity/public/activity_view_model.h',
'activity/activity_manager_impl.cc',
'activity/activity_view_manager_impl.cc',
'wm/public/window_manager.h',
'wm/window_manager_impl.cc',
],
},
{
'target_name': 'athena_test_support',
'type': 'static_library',
'dependencies': [
'../base/base.gyp:test_support_base',
'../skia/skia.gyp:skia',
'../testing/gtest.gyp:gtest',
'../ui/accessibility/accessibility.gyp:ax_gen',
'../ui/aura/aura.gyp:aura_test_support',
'../ui/base/ui_base.gyp:ui_base_test_support',
'../ui/compositor/compositor.gyp:compositor_test_support',
'../ui/views/views.gyp:views',
'../ui/wm/wm.gyp:wm',
'athena_lib',
],
'sources': [
'main/athena_launcher.cc',
'main/athena_launcher.h',
'main/placeholder.cc',
'main/placeholder.h',
'test/athena_test_base.cc',
'test/athena_test_base.h',
'test/athena_test_helper.cc',
'test/athena_test_helper.h',
],
},
{
'target_name': 'athena_unittests',
'type': 'executable',
'dependencies': [
'../testing/gtest.gyp:gtest',
'athena_lib',
'athena_test_support',
],
'sources': [
'test/athena_unittests.cc',
'wm/window_manager_unittest.cc',
],
}
],
}
|