| 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 = [ |
| 11 'WEBKIT_USING_SKIA' |
| 12 ], |
| 10 CPPPATH = [ | 13 CPPPATH = [ |
| 11 '$WEBKIT_DIR/build/WebCore', | 14 '$WEBKIT_DIR/build/WebCore', |
| 15 '$THIRD_PARTY_WEBKIT_DIR/WebKit/chromium/public', |
| 12 ], | 16 ], |
| 13 LIBS = [ | 17 LIBS = [ |
| 14 'port', | 18 'port', |
| 15 'renderer', | 19 'renderer', |
| 16 'V8Bindings', | 20 'V8Bindings', |
| 17 'WebCore', | 21 'WebCore', |
| 18 'WTF', | 22 'WTF', |
| 19 ], | 23 ], |
| 20 ) | 24 ) |
| 21 | 25 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 'plugins/plugin_lib.cc', | 72 'plugins/plugin_lib.cc', |
| 69 'plugins/plugin_list.cc', | 73 'plugins/plugin_list.cc', |
| 70 'plugins/plugin_stream.cc', | 74 'plugins/plugin_stream.cc', |
| 71 'plugins/plugin_stream_url.cc', | 75 'plugins/plugin_stream_url.cc', |
| 72 'plugins/plugin_string_stream.cc', | 76 'plugins/plugin_string_stream.cc', |
| 73 'resource_fetcher.cc', | 77 'resource_fetcher.cc', |
| 74 'resource_handle_impl.cc', | 78 'resource_handle_impl.cc', |
| 75 'resource_loader_bridge.cc', | 79 'resource_loader_bridge.cc', |
| 76 'searchable_form_data.cc', | 80 'searchable_form_data.cc', |
| 77 'stacking_order_iterator.cc', | 81 'stacking_order_iterator.cc', |
| 82 'webclipboard_impl.cc', |
| 78 'webcursor.cc', | 83 'webcursor.cc', |
| 79 'webdatasource_impl.cc', | 84 'webdatasource_impl.cc', |
| 80 'webdocumentloader_impl.cc', | 85 'webdocumentloader_impl.cc', |
| 81 'weberror_impl.cc', | 86 'weberror_impl.cc', |
| 82 'webframe_impl.cc', | 87 'webframe_impl.cc', |
| 83 'webframeloaderclient_impl.cc', | 88 'webframeloaderclient_impl.cc', |
| 84 'webhistoryitem_impl.cc', | 89 'webhistoryitem_impl.cc', |
| 90 'webkit_client_impl.cc', |
| 85 'webkit_glue.cc', | 91 'webkit_glue.cc', |
| 86 'webmediaplayer_impl.cc', | 92 'webmediaplayer_impl.cc', |
| 87 'webplugin_delegate.cc', | 93 'webplugin_delegate.cc', |
| 88 'webplugin_impl.cc', | 94 'webplugin_impl.cc', |
| 89 'webtextinput_impl.cc', | 95 'webtextinput_impl.cc', |
| 90 'weburlrequest_impl.cc', | 96 'weburlrequest_impl.cc', |
| 91 'webwidget_impl.cc', | 97 'webwidget_impl.cc', |
| 92 'webview_delegate.cc', | 98 'webview_delegate.cc', |
| 93 'webview_impl.cc', | 99 'webview_impl.cc', |
| 94 ] | 100 ] |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 name = 'Glue', | 147 name = 'Glue', |
| 142 dependencies = [ | 148 dependencies = [ |
| 143 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 149 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 144 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 150 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 145 ('$WEBKIT_DIR/build/V8Bindings/' + | 151 ('$WEBKIT_DIR/build/V8Bindings/' + |
| 146 'V8Bindings_prebuild.vcproj'), | 152 'V8Bindings_prebuild.vcproj'), |
| 147 ('$WEBKIT_DIR/build/localized_strings/' + | 153 ('$WEBKIT_DIR/build/localized_strings/' + |
| 148 'localized_strings.vcproj'), | 154 'localized_strings.vcproj'), |
| 149 ], | 155 ], |
| 150 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 156 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
| OLD | NEW |