| 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 if env['PLATFORM'] == 'win32': | 9 if env['PLATFORM'] == 'win32': |
| 10 env.Append( | 10 env.Append( |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'password_autocomplete_listener.cc', | 45 'password_autocomplete_listener.cc', |
| 46 'password_form_dom_manager.cc', | 46 'password_form_dom_manager.cc', |
| 47 'resource_fetcher.cc', | 47 'resource_fetcher.cc', |
| 48 'searchable_form_data.cc', | 48 'searchable_form_data.cc', |
| 49 'simple_clipboard_impl.cc', | 49 'simple_clipboard_impl.cc', |
| 50 'stacking_order_iterator.cc', | 50 'stacking_order_iterator.cc', |
| 51 'webcursor.cc', | 51 'webcursor.cc', |
| 52 'webdatasource_impl.cc', | 52 'webdatasource_impl.cc', |
| 53 'webdocumentloader_impl.cc', | 53 'webdocumentloader_impl.cc', |
| 54 'weberror_impl.cc', | 54 'weberror_impl.cc', |
| 55 'webframe_impl.cc', |
| 55 'webframeloaderclient_impl.cc', | 56 'webframeloaderclient_impl.cc', |
| 56 'webhistoryitem_impl.cc', | 57 'webhistoryitem_impl.cc', |
| 57 'webkit_glue.cc', | 58 'webkit_glue.cc', |
| 58 'webtextinput_impl.cc', | 59 'webtextinput_impl.cc', |
| 59 'weburlrequest_impl.cc', | 60 'weburlrequest_impl.cc', |
| 60 'webwidget_impl.cc', | 61 'webwidget_impl.cc', |
| 61 ] | 62 ] |
| 62 | 63 |
| 63 if env['PLATFORM'] == 'win32': | 64 if env['PLATFORM'] == 'win32': |
| 64 # TODO(port): These extra files aren't win32-specific, they've just not been | 65 # TODO(port): These extra files aren't win32-specific, they've just not been |
| 65 # tested on other platforms yet. | 66 # tested on other platforms yet. |
| 66 input_files.append([ | 67 input_files.append([ |
| 67 '$PENDING_DIR/AccessibleBase.cpp', | 68 '$PENDING_DIR/AccessibleBase.cpp', |
| 68 '$PENDING_DIR/AccessibleDocument.cpp', | 69 '$PENDING_DIR/AccessibleDocument.cpp', |
| 69 'dom_serializer.cc', | 70 'dom_serializer.cc', |
| 70 'glue_accessibility.cc', | 71 'glue_accessibility.cc', |
| 71 'plugins/mozilla_extensions.cc', | 72 'plugins/mozilla_extensions.cc', |
| 72 'plugins/plugin_host.cc', | 73 'plugins/plugin_host.cc', |
| 73 'plugins/plugin_instance.cc', | 74 'plugins/plugin_instance.cc', |
| 74 'plugins/plugin_lib.cc', | 75 'plugins/plugin_lib.cc', |
| 75 'plugins/plugin_list.cc', | 76 'plugins/plugin_list.cc', |
| 76 'plugins/plugin_stream.cc', | 77 'plugins/plugin_stream.cc', |
| 77 'plugins/plugin_stream_url.cc', | 78 'plugins/plugin_stream_url.cc', |
| 78 'plugins/plugin_string_stream.cc', | 79 'plugins/plugin_string_stream.cc', |
| 79 'plugins/webplugin_delegate_impl.cc', | 80 'plugins/webplugin_delegate_impl.cc', |
| 80 'resource_handle_win.cc', | 81 'resource_handle_win.cc', |
| 81 'webdropdata.cc', | 82 'webdropdata.cc', |
| 82 'webframe_impl.cc', | |
| 83 'webinputevent_win.cc', | 83 'webinputevent_win.cc', |
| 84 'webplugin_impl.cc', | 84 'webplugin_impl.cc', |
| 85 'webview_impl.cc', | 85 'webview_impl.cc', |
| 86 ]) | 86 ]) |
| 87 | 87 |
| 88 env.ChromeStaticLibrary('glue', input_files) | 88 env.ChromeStaticLibrary('glue', input_files) |
| OLD | NEW |