OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../../../../build/common.gypi', | 10 '../../../../build/common.gypi', |
11 ], | 11 ], |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'bho', | 14 'target_name': 'bho', |
15 'type': 'static_library', | 15 'type': 'static_library', |
16 'dependencies': [ | 16 'dependencies': [ |
17 '../toolband/toolband.gyp:toolband_idl', | 17 '../toolband/toolband.gyp:toolband_idl', |
18 '../../broker/broker.gyp:broker', | 18 '../../broker/broker.gyp:broker', |
19 '../../broker/broker.gyp:broker_rpc_idl', | 19 '../../broker/broker.gyp:broker_rpc_idl', |
20 '../../broker/broker.gyp:broker_rpc_lib', | 20 '../../broker/broker.gyp:broker_rpc_lib', |
21 '../../common/common.gyp:ie_common', | 21 '../../common/common.gyp:ie_common', |
22 '../../common/common.gyp:ie_common_settings', | 22 '../../common/common.gyp:ie_common_settings', |
23 '../../../common/common.gyp:ceee_common', | 23 '../../../common/common.gyp:ceee_common', |
24 '../../../common/common.gyp:initializing_coclass', | 24 '../../../common/common.gyp:initializing_coclass', |
25 '../../../../base/base.gyp:base', | 25 '../../../../base/base.gyp:base', |
26 '../../../../chrome_frame/chrome_frame.gyp:chrome_tab_idl', | 26 '../../../../chrome_frame/chrome_frame.gyp:chrome_tab_idl', |
27 # For the vtable patching stuff... | 27 # For the vtable patching stuff... |
28 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', | 28 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', |
| 29 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
29 ], | 30 ], |
30 'sources': [ | 31 'sources': [ |
31 'browser_helper_object.cc', | 32 'browser_helper_object.cc', |
32 'browser_helper_object.h', | 33 'browser_helper_object.h', |
33 'browser_helper_object.rgs', | 34 'browser_helper_object.rgs', |
34 'cookie_accountant.cc', | 35 'cookie_accountant.cc', |
35 'cookie_accountant.h', | 36 'cookie_accountant.h', |
36 'cookie_events_funnel.cc', | 37 'cookie_events_funnel.cc', |
37 'cookie_events_funnel.h', | 38 'cookie_events_funnel.h', |
38 'dom_utils.cc', | 39 'dom_utils.cc', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'web_progress_notifier.cc', | 72 'web_progress_notifier.cc', |
72 'web_progress_notifier.h', | 73 'web_progress_notifier.h', |
73 'window_message_source.cc', | 74 'window_message_source.cc', |
74 'window_message_source.h', | 75 'window_message_source.h', |
75 | 76 |
76 '../../../../chrome_frame/renderer_glue.cc', # needed for cf_ie.lib | 77 '../../../../chrome_frame/renderer_glue.cc', # needed for cf_ie.lib |
77 '../../../../chrome/common/extensions/extension_resource.cc', | 78 '../../../../chrome/common/extensions/extension_resource.cc', |
78 '../../../../chrome/common/extensions/extension_resource.h', | 79 '../../../../chrome/common/extensions/extension_resource.h', |
79 ], | 80 ], |
80 'include_dirs': [ | 81 'include_dirs': [ |
81 # For chrome_tab.h | 82 # For chrome_tab.h and version.h |
82 '<(SHARED_INTERMEDIATE_DIR)', | 83 '<(SHARED_INTERMEDIATE_DIR)', |
83 ], | 84 ], |
84 'libraries': [ | 85 'libraries': [ |
85 'rpcrt4.lib', | 86 'rpcrt4.lib', |
86 ], | 87 ], |
87 }, | 88 }, |
88 ] | 89 ] |
89 } | 90 } |
OLD | NEW |