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