| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'webinputevent_win.cc', | 114 'webinputevent_win.cc', |
| 115 'webkit_glue_win.cc', | 115 'webkit_glue_win.cc', |
| 116 ]) | 116 ]) |
| 117 elif env.Bit('linux'): | 117 elif env.Bit('linux'): |
| 118 input_files.extend([ | 118 input_files.extend([ |
| 119 'plugins/plugin_lib_linux.cc', | 119 'plugins/plugin_lib_linux.cc', |
| 120 'plugins/plugin_list_linux.cc', | 120 'plugins/plugin_list_linux.cc', |
| 121 'plugins/webplugin_delegate_impl_gtk.cc', | 121 'plugins/webplugin_delegate_impl_gtk.cc', |
| 122 'webcursor_gtk.cc', | 122 'webcursor_gtk.cc', |
| 123 'webinputevent_linux.cc', | 123 'webinputevent_linux.cc', |
| 124 'webinputevent_utils.cc', |
| 124 'webkit_glue_gtk.cc', | 125 'webkit_glue_gtk.cc', |
| 125 ]) | 126 ]) |
| 126 elif env.Bit('mac'): | 127 elif env.Bit('mac'): |
| 127 input_files.extend([ | 128 input_files.extend([ |
| 128 'plugins/plugin_lib_mac.mm', | 129 'plugins/plugin_lib_mac.mm', |
| 129 'plugins/plugin_list_mac.mm', | 130 'plugins/plugin_list_mac.mm', |
| 130 'webcursor_mac.mm', | 131 'webcursor_mac.mm', |
| 131 ]) | 132 ]) |
| 132 | 133 |
| 133 if env.Bit('posix'): | 134 if env.Bit('posix'): |
| 134 input_files.extend([ | 135 input_files.extend([ |
| 135 'plugins/plugin_stream_posix.cc', | 136 'plugins/plugin_stream_posix.cc', |
| 136 ]) | 137 ]) |
| 137 | 138 |
| 138 env.ChromeLibrary('glue', input_files) | 139 env.ChromeLibrary('glue', input_files) |
| 139 | 140 |
| 140 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', | 141 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', |
| 141 name = 'Glue', | 142 name = 'Glue', |
| 142 dependencies = [ | 143 dependencies = [ |
| 143 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 144 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 144 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 145 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 145 ('$WEBKIT_DIR/build/V8Bindings/' + | 146 ('$WEBKIT_DIR/build/V8Bindings/' + |
| 146 'V8Bindings_prebuild.vcproj'), | 147 'V8Bindings_prebuild.vcproj'), |
| 147 ('$WEBKIT_DIR/build/localized_strings/' + | 148 ('$WEBKIT_DIR/build/localized_strings/' + |
| 148 'localized_strings.vcproj'), | 149 'localized_strings.vcproj'), |
| 149 ], | 150 ], |
| 150 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 151 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
| OLD | NEW |