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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'plugins/webplugin_delegate_impl.cc', | 128 'plugins/webplugin_delegate_impl.cc', |
129 'webdropdata.cc', | 129 'webdropdata.cc', |
130 ]) | 130 ]) |
131 | 131 |
132 if env.Bit('windows'): | 132 if env.Bit('windows'): |
133 input_files.extend([ | 133 input_files.extend([ |
134 'plugins/plugin_lib_win.cc', | 134 'plugins/plugin_lib_win.cc', |
135 'plugins/plugin_list_win.cc', | 135 'plugins/plugin_list_win.cc', |
136 'plugins/plugin_stream_win.cc', | 136 'plugins/plugin_stream_win.cc', |
137 'webcursor_win.cc', | 137 'webcursor_win.cc', |
138 'webkit_glue_win.cc', | |
139 ]) | 138 ]) |
140 elif env.Bit('linux'): | 139 elif env.Bit('linux'): |
141 input_files.extend([ | 140 input_files.extend([ |
142 'plugins/plugin_lib_linux.cc', | 141 'plugins/plugin_lib_linux.cc', |
143 'plugins/plugin_list_linux.cc', | 142 'plugins/plugin_list_linux.cc', |
144 'plugins/webplugin_delegate_impl_gtk.cc', | 143 'plugins/webplugin_delegate_impl_gtk.cc', |
145 'webcursor_gtk.cc', | 144 'webcursor_gtk.cc', |
146 'webkit_glue_gtk.cc', | |
147 ]) | 145 ]) |
148 elif env.Bit('mac'): | 146 elif env.Bit('mac'): |
149 input_files.extend([ | 147 input_files.extend([ |
150 'plugins/plugin_lib_mac.mm', | 148 'plugins/plugin_lib_mac.mm', |
151 'plugins/plugin_list_mac.mm', | 149 'plugins/plugin_list_mac.mm', |
152 'webcursor_mac.mm', | 150 'webcursor_mac.mm', |
153 ]) | 151 ]) |
154 | 152 |
155 if env.Bit('posix'): | 153 if env.Bit('posix'): |
156 input_files.extend([ | 154 input_files.extend([ |
157 'plugins/plugin_stream_posix.cc', | 155 'plugins/plugin_stream_posix.cc', |
158 ]) | 156 ]) |
159 | 157 |
160 env.ChromeLibrary('glue', input_files) | 158 env.ChromeLibrary('glue', input_files) |
161 | 159 |
162 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', | 160 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', |
163 name = 'Glue', | 161 name = 'Glue', |
164 dependencies = [ | 162 dependencies = [ |
165 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 163 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
166 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 164 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
167 ('$WEBKIT_DIR/build/V8Bindings/' + | 165 ('$WEBKIT_DIR/build/V8Bindings/' + |
168 'V8Bindings_prebuild.vcproj'), | 166 'V8Bindings_prebuild.vcproj'), |
169 ('$WEBKIT_DIR/build/localized_strings/' + | 167 ('$WEBKIT_DIR/build/localized_strings/' + |
170 'localized_strings.vcproj'), | 168 'localized_strings.vcproj'), |
171 ], | 169 ], |
172 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 170 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
OLD | NEW |