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
|
# Copyright (c) 2012 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': 'app_list',
'type': '<(component)',
'dependencies': [
'../../base/base.gyp:base',
'../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'../../skia/skia.gyp:skia',
'../compositor/compositor.gyp:compositor',
'../ui.gyp:ui',
'../views/views.gyp:views',
],
'defines': [
'APP_LIST_IMPLEMENTATION',
],
'sources': [
'app_list_bubble_border.cc',
'app_list_bubble_border.h',
'app_list_export.h',
'app_list_item_model.cc',
'app_list_item_model.h',
'app_list_item_model_observer.h',
'app_list_item_view.cc',
'app_list_item_view.h',
'app_list_model.cc',
'app_list_model.h',
'app_list_model_view.cc',
'app_list_model_view.h',
'app_list_view.cc',
'app_list_view.h',
'app_list_view_delegate.h',
'drop_shadow_label.cc',
'drop_shadow_label.h',
'icon_cache.cc',
'icon_cache.h',
'page_switcher.cc',
'page_switcher.h',
'pagination_model.cc',
'pagination_model.h',
'pagination_model_observer.h',
],
},
{
'target_name': 'app_list_unittests',
'type': 'executable',
'dependencies': [
'../../base/base.gyp:base',
'../../base/base.gyp:test_support_base',
'../../skia/skia.gyp:skia',
'../../testing/gtest.gyp:gtest',
'../compositor/compositor.gyp:compositor',
'../compositor/compositor.gyp:compositor_test_support',
'../views/views.gyp:views',
'app_list',
],
'sources': [
'app_list_model_view_unittest.cc',
'run_all_unittests.cc',
],
},
],
}
|