| Index: webkit/glue/SConscript
|
| diff --git a/webkit/glue/SConscript b/webkit/glue/SConscript
|
| index 9006cd01855f706081c8cdc11dffa76196729ee9..65de5bfead751ea8642b4b3e543be36a41322661 100644
|
| --- a/webkit/glue/SConscript
|
| +++ b/webkit/glue/SConscript
|
| @@ -69,6 +69,18 @@ input_files = [
|
| 'webview_impl.cc',
|
| ]
|
|
|
| +if env['PLATFORM'] == 'posix':
|
| + # TODO(port): until we have plugin support for Linux, these files aren't built.
|
| + remove_files = [
|
| + 'plugins/plugin_host.cc',
|
| + 'plugins/plugin_instance.cc',
|
| + 'plugins/plugin_string_stream.cc',
|
| + 'plugins/plugin_stream_url.cc',
|
| + ]
|
| +
|
| + for file in remove_files:
|
| + input_files.remove(file)
|
| +
|
| if env['PLATFORM'] == 'win32':
|
| # TODO(port): These extra files aren't win32-specific, they've just not been
|
| # tested on other platforms yet.
|
|
|