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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
# Copyright (c) 2009 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,
# Mac NOTE: at the start of the conditions block we default some vars
# that control features based on the branding, this way each place that
# needs to know about the feature isn't hard coded to the branding type.
},
'includes': [
'../build/common.gypi',
],
'target_defaults': {
'sources/': [
['exclude', '/(cocoa|gtk|win)/'],
['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|x)\\.(cc|mm?)$'],
['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'],
],
'conditions': [
['OS=="linux"', {'sources/': [
['include', '/gtk/'],
['include', '_(gtk|linux|posix|skia|x)\\.cc$'],
['include', '/(gtk|x11)_[^/]*\\.cc$'],
]}],
['OS=="mac"', {'sources/': [
['include', '/cocoa/'],
['include', '_(cocoa|mac|posix)\\.(cc|mm?)$'],
]}, { # else: OS != "mac"
'sources/': [
['exclude', '\\.mm?$'],
],
}],
['OS=="win"', {'sources/': [
['include', '_(win)\\.cc$'],
['include', '/win/'],
['include', '/win_[^/]*\\.cc$'],
]}],
],
},
'targets': [
{
'target_name': 'app_base',
'type': '<(library)',
'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE',
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:base_gfx',
'../net/net.gyp:net',
'../skia/skia.gyp:skia',
'../third_party/icu38/icu38.gyp:icui18n',
'../third_party/icu38/icu38.gyp:icuuc',
],
'include_dirs': [
'..',
'../chrome/third_party/wtl/include',
],
'sources': [
# All .cc, .h, and .mm files under app/ except for tests.
'animation.cc',
'animation.h',
'app_paths.h',
'app_paths.cc',
'app_switches.h',
'app_switches.cc',
'drag_drop_types.cc',
'drag_drop_types.h',
'gfx/canvas.cc',
'gfx/canvas.h',
'gfx/canvas_linux.cc',
'gfx/canvas_win.cc',
'gfx/font.h',
'gfx/font_gtk.cc',
'gfx/font_mac.mm',
'gfx/font_skia.cc',
'gfx/font_win.cc',
'gfx/color_utils.cc',
'gfx/color_utils.h',
'gfx/favicon_size.h',
'gfx/gtk_util.cc',
'gfx/gtk_util.h',
'gfx/icon_util.cc',
'gfx/icon_util.h',
'gfx/insets.h',
'gfx/path_gtk.cc',
'gfx/path_win.cc',
'gfx/path.h',
'gfx/text_elider.cc',
'gfx/text_elider.h',
'l10n_util.cc',
'l10n_util.h',
'l10n_util_posix.cc',
'l10n_util_win.cc',
'l10n_util_win.h',
'message_box_flags.h',
'os_exchange_data_win.cc',
'os_exchange_data_gtk.cc',
'os_exchange_data.h',
'resource_bundle.cc',
'resource_bundle.h',
'resource_bundle_win.cc',
'resource_bundle_linux.cc',
'resource_bundle_mac.mm',
'slide_animation.cc',
'slide_animation.h',
'theme_provider.h',
'throb_animation.cc',
'throb_animation.h',
],
'direct_dependent_settings': {
'include_dirs': [
'..',
],
},
'conditions': [
['OS=="linux"', {
'dependencies': [
# font_gtk.cc uses fontconfig.
# TODO(evanm): I think this is wrong; it should just use GTK.
'../build/linux/system.gyp:fontconfig',
'../build/linux/system.gyp:gtk',
],
}],
['OS=="win"', {
# TODO: remove this when chrome_resources/chrome_strings are
# generated by GYP.
# The legacy vcproj we rely on places the grit output in this
# directory, so we need to explicitly add it to our include path.
'include_dirs': [
'<(PRODUCT_DIR)/grit_derived_sources',
],
'sources': [
'win_util.cc',
'win_util.h',
],
}],
['OS!="win"', {
'sources!': [
'drag_drop_types.cc',
'drag_drop_types.h',
'gfx/icon_util.cc',
'gfx/icon_util.h',
'os_exchange_data.cc',
],
# TODO: Move these dependencies to platform-neutral once these
# projects are generated by GYP.
'dependencies': [
'../chrome/chrome.gyp:chrome_resources',
'../chrome/chrome.gyp:chrome_strings',
],
'conditions': [
['toolkit_views==0', {
# Note: because of gyp predence rules this has to be defined as
# 'sources/' rather than 'sources!'.
'sources/': [
['exclude', '^os_exchange_data_gtk.cc'],
['exclude', '^os_exchange_data.h'],
],
}],
],
}],
],
},
],
}
|