| 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 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'password_form_dom_manager.cc', | 58 'password_form_dom_manager.cc', |
| 59 'plugins/plugin_host.cc', | 59 'plugins/plugin_host.cc', |
| 60 'plugins/plugin_instance.cc', | 60 'plugins/plugin_instance.cc', |
| 61 'plugins/plugin_lib.cc', | 61 'plugins/plugin_lib.cc', |
| 62 'plugins/plugin_list.cc', | 62 'plugins/plugin_list.cc', |
| 63 'plugins/plugin_stream.cc', | 63 'plugins/plugin_stream.cc', |
| 64 'plugins/plugin_stream_url.cc', | 64 'plugins/plugin_stream_url.cc', |
| 65 'plugins/plugin_string_stream.cc', | 65 'plugins/plugin_string_stream.cc', |
| 66 'resource_fetcher.cc', | 66 'resource_fetcher.cc', |
| 67 'resource_handle_impl.cc', | 67 'resource_handle_impl.cc', |
| 68 'resource_loader_bridge.cc', |
| 68 'searchable_form_data.cc', | 69 'searchable_form_data.cc', |
| 69 'stacking_order_iterator.cc', | 70 'stacking_order_iterator.cc', |
| 70 'webcursor.cc', | 71 'webcursor.cc', |
| 71 'webdatasource_impl.cc', | 72 'webdatasource_impl.cc', |
| 72 'webdocumentloader_impl.cc', | 73 'webdocumentloader_impl.cc', |
| 73 'weberror_impl.cc', | 74 'weberror_impl.cc', |
| 74 'webframe_impl.cc', | 75 'webframe_impl.cc', |
| 75 'webframeloaderclient_impl.cc', | 76 'webframeloaderclient_impl.cc', |
| 76 'webhistoryitem_impl.cc', | 77 'webhistoryitem_impl.cc', |
| 77 'webkit_glue.cc', | 78 'webkit_glue.cc', |
| 78 'webmediaplayer_impl.cc', | 79 'webmediaplayer_impl.cc', |
| 80 'webplugin_delegate.cc', |
| 79 'webplugin_impl.cc', | 81 'webplugin_impl.cc', |
| 80 'webtextinput_impl.cc', | 82 'webtextinput_impl.cc', |
| 81 'weburlrequest_impl.cc', | 83 'weburlrequest_impl.cc', |
| 82 'webwidget_impl.cc', | 84 'webwidget_impl.cc', |
| 85 'webview_delegate.cc', |
| 83 'webview_impl.cc', | 86 'webview_impl.cc', |
| 84 ] | 87 ] |
| 85 | 88 |
| 86 if env.Bit('windows'): | 89 if env.Bit('windows'): |
| 87 # TODO(port): These extra files aren't win32-specific, they've just not been | 90 # TODO(port): These extra files aren't win32-specific, they've just not been |
| 88 # tested on other platforms yet. | 91 # tested on other platforms yet. |
| 89 input_files.extend([ | 92 input_files.extend([ |
| 90 '$PENDING_DIR/AccessibleBase.cpp', | 93 '$PENDING_DIR/AccessibleBase.cpp', |
| 91 '$PENDING_DIR/AccessibleDocument.cpp', | 94 '$PENDING_DIR/AccessibleDocument.cpp', |
| 92 'glue_accessibility.cc', | 95 'glue_accessibility.cc', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 name = 'Glue', | 134 name = 'Glue', |
| 132 dependencies = [ | 135 dependencies = [ |
| 133 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 136 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 134 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 137 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 135 ('$WEBKIT_DIR/build/V8Bindings/' + | 138 ('$WEBKIT_DIR/build/V8Bindings/' + |
| 136 'V8Bindings_prebuild.vcproj'), | 139 'V8Bindings_prebuild.vcproj'), |
| 137 ('$WEBKIT_DIR/build/localized_strings/' + | 140 ('$WEBKIT_DIR/build/localized_strings/' + |
| 138 'localized_strings.vcproj'), | 141 'localized_strings.vcproj'), |
| 139 ], | 142 ], |
| 140 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 143 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
| OLD | NEW |