OLD | NEW |
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 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 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.Append( | 9 env.Append( |
10 CPPDEFINES = [ | 10 CPPDEFINES = [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'plugins/plugin_instance.cc', | 71 'plugins/plugin_instance.cc', |
72 'plugins/plugin_lib.cc', | 72 'plugins/plugin_lib.cc', |
73 'plugins/plugin_list.cc', | 73 'plugins/plugin_list.cc', |
74 'plugins/plugin_stream.cc', | 74 'plugins/plugin_stream.cc', |
75 'plugins/plugin_stream_url.cc', | 75 'plugins/plugin_stream_url.cc', |
76 'plugins/plugin_string_stream.cc', | 76 'plugins/plugin_string_stream.cc', |
77 'resource_fetcher.cc', | 77 'resource_fetcher.cc', |
78 'resource_handle_impl.cc', | 78 'resource_handle_impl.cc', |
79 'resource_loader_bridge.cc', | 79 'resource_loader_bridge.cc', |
80 'searchable_form_data.cc', | 80 'searchable_form_data.cc', |
| 81 'simple_webmimeregistry_impl.cc', |
81 'stacking_order_iterator.cc', | 82 'stacking_order_iterator.cc', |
82 'webclipboard_impl.cc', | 83 'webclipboard_impl.cc', |
83 'webcursor.cc', | 84 'webcursor.cc', |
84 'webdatasource_impl.cc', | 85 'webdatasource_impl.cc', |
85 'webdocumentloader_impl.cc', | 86 'webdocumentloader_impl.cc', |
86 'weberror_impl.cc', | 87 'weberror_impl.cc', |
87 'webframe_impl.cc', | 88 'webframe_impl.cc', |
88 'webframeloaderclient_impl.cc', | 89 'webframeloaderclient_impl.cc', |
89 'webhistoryitem_impl.cc', | 90 'webhistoryitem_impl.cc', |
90 'webkit_client_impl.cc', | 91 'webkitclient_impl.cc', |
91 'webkit_glue.cc', | 92 'webkit_glue.cc', |
92 'webmediaplayer_impl.cc', | 93 'webmediaplayer_impl.cc', |
93 'webplugin_delegate.cc', | 94 'webplugin_delegate.cc', |
94 'webplugin_impl.cc', | 95 'webplugin_impl.cc', |
95 'webtextinput_impl.cc', | 96 'webtextinput_impl.cc', |
96 'weburlrequest_impl.cc', | 97 'weburlrequest_impl.cc', |
97 'webwidget_impl.cc', | 98 'webwidget_impl.cc', |
98 'webview_delegate.cc', | 99 'webview_delegate.cc', |
99 'webview_impl.cc', | 100 'webview_impl.cc', |
100 ] | 101 ] |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 name = 'Glue', | 149 name = 'Glue', |
149 dependencies = [ | 150 dependencies = [ |
150 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 151 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
151 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 152 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
152 ('$WEBKIT_DIR/build/V8Bindings/' + | 153 ('$WEBKIT_DIR/build/V8Bindings/' + |
153 'V8Bindings_prebuild.vcproj'), | 154 'V8Bindings_prebuild.vcproj'), |
154 ('$WEBKIT_DIR/build/localized_strings/' + | 155 ('$WEBKIT_DIR/build/localized_strings/' + |
155 'localized_strings.vcproj'), | 156 'localized_strings.vcproj'), |
156 ], | 157 ], |
157 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 158 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
OLD | NEW |