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
|
# Copyright (c) 2010 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,
},
'includes': [
'../../../../build/common.gypi',
],
'targets': [
{
'target_name': 'bho',
'type': 'static_library',
'dependencies': [
'../toolband/toolband.gyp:toolband_idl',
'../../broker/broker.gyp:broker',
'../../common/common.gyp:ie_common',
'../../common/common.gyp:ie_common_settings',
'../../../common/common.gyp:ceee_common',
'../../../common/common.gyp:initializing_coclass',
'../../../../base/base.gyp:base',
# For the vtable patching stuff...
'../../../../chrome_frame/chrome_frame.gyp:chrome_frame_ie',
],
'sources': [
'browser_helper_object.cc',
'browser_helper_object.h',
'browser_helper_object.rgs',
'cookie_accountant.cc',
'cookie_accountant.h',
'cookie_events_funnel.cc',
'cookie_events_funnel.h',
'dom_utils.cc',
'dom_utils.h',
'events_funnel.cc',
'events_funnel.h',
'executor.cc',
'executor.h',
'extension_port_manager.cc',
'extension_port_manager.h',
'frame_event_handler.cc',
'frame_event_handler.h',
'http_negotiate.cc',
'http_negotiate.h',
'infobar_browser_window.cc',
'infobar_browser_window.h',
'infobar_events_funnel.cc',
'infobar_events_funnel.h',
'infobar_manager.cc',
'infobar_manager.h',
'infobar_window.cc',
'infobar_window.h',
'../../common/precompile.cc',
'../../common/precompile.h',
'tab_events_funnel.cc',
'tab_events_funnel.h',
'tab_window_manager.cc',
'tab_window_manager.h',
'tool_band_visibility.cc',
'tool_band_visibility.h',
'web_browser_events_source.h',
'webnavigation_events_funnel.cc',
'webnavigation_events_funnel.h',
'webrequest_events_funnel.cc',
'webrequest_events_funnel.h',
'webrequest_notifier.cc',
'webrequest_notifier.h',
'web_progress_notifier.cc',
'web_progress_notifier.h',
'window_message_source.cc',
'window_message_source.h',
'../../../../chrome_frame/renderer_glue.cc', # needed for cf_ie.lib
'../../../../chrome/common/extensions/extension_resource.cc',
'../../../../chrome/common/extensions/extension_resource.h',
],
'configurations': {
'Debug': {
'msvs_precompiled_source': '../../common/precompile.cc',
'msvs_precompiled_header': '../../common/precompile.h',
},
},
},
]
}
|