-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKaminoContentShell.gyp
140 lines (140 loc) · 5.61 KB
/
KaminoContentShell.gyp
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
{
'variables': {
'chromium_code': 1,
'use_v8_in_net': 1,
},
'targets': [
{
'target_name': 'KaminoContentShell',
'type': 'executable',
'include_dirs': [
'.',
'../third_party/WebKit/Source/WebKit/chromium/public',
],
'dependencies': [
'../content/content.gyp:content_app_both',
'../content/content.gyp:content_browser',
'../content/content.gyp:content_common',
'../content/content.gyp:content_gpu',
'../content/content.gyp:content_plugin',
'../content/content.gyp:content_ppapi_plugin',
'../content/content.gyp:content_renderer',
'../content/content.gyp:content_utility',
'../content/content.gyp:content_worker',
'../content/content.gyp:content_shell_resources',
'../content/content_resources.gyp:content_resources',
'../base/base.gyp:base',
'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'../sandbox/sandbox.gyp:sandbox',
'../url/url.gyp:url_lib',
'../ipc/ipc.gyp:ipc',
'../media/media.gyp:media',
'../net/net.gyp:net',
'../skia/skia.gyp:skia',
'../third_party/libxml/libxml.gyp:libxml',
'../third_party/libpng/libpng.gyp:libpng',
'../third_party/zlib/zlib.gyp:minizip',
'../ui/gl/gl.gyp:gl',
'../ui/ui.gyp:ui',
'../v8/tools/gyp/v8.gyp:v8',
'../third_party/WebKit/public/blink_test_runner.gyp:blink_test_runner',
'../webkit/common/webkit_common.gyp:webkit_common',
'../webkit/webkit_resources.gyp:webkit_resources',
'../webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
'../webkit/support/webkit_support.gyp:glue',
],
'sources': [
'../content/browser/net/sqlite_persistent_cookie_store.cc',
'../content/browser/net/sqlite_persistent_cookie_store.h',
'BasicUIMain.cpp',
'KaminoAfterSetupSystemInit.cpp',
'KaminoAfterSetupSystemInit.h',
'KaminoBrowserContext.cpp',
'KaminoBrowserContext.h',
'KaminoBrowserMainParts.cpp',
'KaminoBrowserMainParts.h',
'KaminoContentBrowserClient.cpp',
'KaminoContentBrowserClient.h',
'KaminoContentRenderClient.h',
'KaminoContentRenderClient.cpp',
'KaminoDirectResource.cpp',
'KaminoDirectResource.h',
'KaminoDownloadManagerDelegate.cpp',
'KaminoDownloadManagerDelegate.h',
'KaminoFindWindow.cpp',
'KaminoFindWindow.h',
'KaminoGlobal.cpp',
'KaminoGlobal.h',
'KaminoGlowWindow.cpp',
'KaminoGlowWindow.h',
'KaminoHistoryModule.cpp',
'KaminoHistoryModule.h',
'KaminoIPCMessages.h',
'KaminoLayeredToolTip.cpp',
'KaminoLayeredToolTip.h',
'KaminoMainDelegate.cpp',
'KaminoMainDelegate.h',
'KaminoMsgGenrator.cpp',
'KaminoNetworkDelegate.cpp',
'KaminoNetworkDelegate.h',
'KaminoRenderViewHost.cpp',
'KaminoRenderViewHost.h',
'KaminoSilentFacebookPost.cpp',
'KaminoSilentFacebookPost.h',
'KaminoSimpleTimer.cpp',
'KaminoSimpleTimer.h',
'KaminoUpdateProcess.cpp',
'KaminoUpdateProcess.h',
'KaminoUpdateStatus.cpp',
'KaminoUpdateStatus.h',
'KaminoURLToolTip.cpp',
'KaminoURLToolTip.h',
'KaminoWaitWindow.cpp',
'KaminoWaitWindow.h',
'KaminoWebContentViewDelegate.cpp',
'KaminoWebContentViewDelegate.h',
'KButton.cpp',
'KButton.h',
'KTab.cpp',
'KTab.h',
'main.cc',
'resource.h',
'resource.rc',
'UIMain.cpp',
'UIMain.h',
],
'msvs_settings': {
'VCLinkerTool': {
# Set /SUBSYSTEM:WINDOWS.
'SubSystem': '2',
'EntryPointSymbol' : 'wWinMainCRTStartup',
},
},
'conditions': [
['OS=="win" and win_use_allocator_shim==1', {
'dependencies': [
'../base/allocator/allocator.gyp:allocator',
],
}],
['OS=="win"', {
'resource_include_dirs': [
'<(SHARED_INTERMEDIATE_DIR)/webkit',
],
'dependencies': [
'<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources',
'<(DEPTH)/webkit/webkit_resources.gyp:webkit_strings',
],
'configurations': {
'Debug_Base': {
'msvs_settings': {
'VCLinkerTool': {
'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
},
},
},
},
}],
],
},
],
}