-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKaminoContentShell.gypi
129 lines (129 loc) · 5.84 KB
/
KaminoContentShell.gypi
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
{
'targets': [
{
'target_name': 'KaminoContentShell',
'type': 'executable',
'variables': {
'chromium_code': 1,
},
'include_dirs': [
'.',
'../third_party/WebKit/Source/WebKit/chromium/public',
],
'dependencies': [
#'../content/content.gyp:content_app',
#'../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_resources.gyp:content_resources',
#'../base/base.gyp:base',
#'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
#'../sandbox/sandbox.gyp:sandbox',
#'../build/temp_gyp/googleurl.gyp:googleurl',
#'../ipc/ipc.gyp:ipc',
#'../media/media.gyp:media',
#'../net/net.gyp:net',
#'../skia/skia.gyp:skia',
#'../third_party/libxml/libxml.gyp:libxml',
#'../third_party/WebKit/Source/WebCore/WebCore.gyp/WebCore.gyp:webcore',
#'../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
#'../third_party/zlib/zlib.gyp:minizip',
#'../ui/gl/gl.gyp:gl',
#'../ui/ui.gyp:ui',
#'../v8/tools/gyp/v8.gyp:v8',
#'../webkit/support/webkit_support.gyp:glue',
#'../webkit/support/webkit_support.gyp:webkit_storage',
'content_app',
'content_browser',
'content_common',
'content_gpu',
'content_plugin',
'content_ppapi_plugin',
'content_renderer',
'content_shell_resources',
'content_utility',
'content_worker',
'test_support_content',
'content_resources.gyp:content_resources',
'../base/base.gyp:base',
'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'../build/temp_gyp/googleurl.gyp:googleurl',
'../ipc/ipc.gyp:ipc',
'../media/media.gyp:media',
'../net/net.gyp:net',
'../net/net.gyp:net_resources',
'../skia/skia.gyp:skia',
'../ui/gl/gl.gyp:gl',
'../ui/ui.gyp:ui',
'../v8/tools/gyp/v8.gyp:v8',
'../webkit/support/webkit_support.gyp:webkit_support',
'<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
'<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit_test_support',
'<(webkit_src_dir)/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:TestRunner',
],
'sources': [
'main.cc',
'../chrome/browser/net/clear_on_exit_policy.cc',
'../chrome/browser/net/clear_on_exit_policy.h',
'../chrome/browser/net/sqlite_persistent_cookie_store.cc',
'../chrome/browser/net/sqlite_persistent_cookie_store.h',
'../KaminoContentShell/BasicUIMain.cpp',
'../KaminoContentShell/KaminoBrowserContext.cpp',
'../KaminoContentShell/KaminoBrowserContext.h',
'../KaminoContentShell/KaminoBrowserMainParts.cpp',
'../KaminoContentShell/KaminoBrowserMainParts.h',
'../KaminoContentShell/KaminoContentBrowserClient.cpp',
'../KaminoContentShell/KaminoContentBrowserClient.h',
'../KaminoContentShell/KaminoDownloadManagerDelegate.cpp',
'../KaminoContentShell/KaminoDownloadManagerDelegate.h',
'../KaminoContentShell/KaminoGlobal.h',
'../KaminoContentShell/KaminoMainDelegate.cpp',
'../KaminoContentShell/KaminoMainDelegate.h',
'../KaminoContentShell/KaminoNetworkDelegate.cpp',
'../KaminoContentShell/KaminoNetworkDelegate.h',
'../KaminoContentShell/KTab.cpp',
'../KaminoContentShell/KTab.h',
'../KaminoContentShell/UIMain.h',
'../content/KaminoWebContentViewDelegate.cpp',
'../KaminoWebContentViewDelegate.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/support/webkit_support.gyp:webkit_resources',
'<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings',
],
'configurations': {
'Debug_Base': {
'msvs_settings': {
'VCLinkerTool': {
'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
},
},
},
},
}],
],
},
],
}