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_util.cc', |
130 'webkit_glue_gtk.cc', | 131 'webkit_glue_gtk.cc', |
131 ]) | 132 ]) |
132 elif env.Bit('mac'): | 133 elif env.Bit('mac'): |
133 input_files.extend([ | 134 input_files.extend([ |
134 'plugins/plugin_lib_mac.mm', | 135 'plugins/plugin_lib_mac.mm', |
135 'plugins/plugin_list_mac.mm', | 136 'plugins/plugin_list_mac.mm', |
136 'webcursor_mac.mm', | 137 'webcursor_mac.mm', |
137 ]) | 138 ]) |
138 | 139 |
139 if env.Bit('posix'): | 140 if env.Bit('posix'): |
140 input_files.extend([ | 141 input_files.extend([ |
141 'plugins/plugin_stream_posix.cc', | 142 'plugins/plugin_stream_posix.cc', |
142 ]) | 143 ]) |
143 | 144 |
144 env.ChromeLibrary('glue', input_files) | 145 env.ChromeLibrary('glue', input_files) |
145 | 146 |
146 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', | 147 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', |
147 name = 'Glue', | 148 name = 'Glue', |
148 dependencies = [ | 149 dependencies = [ |
149 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 150 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
150 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 151 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
151 ('$WEBKIT_DIR/build/V8Bindings/' + | 152 ('$WEBKIT_DIR/build/V8Bindings/' + |
152 'V8Bindings_prebuild.vcproj'), | 153 'V8Bindings_prebuild.vcproj'), |
153 ('$WEBKIT_DIR/build/localized_strings/' + | 154 ('$WEBKIT_DIR/build/localized_strings/' + |
154 'localized_strings.vcproj'), | 155 'localized_strings.vcproj'), |
155 ], | 156 ], |
156 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 157 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
OLD | NEW |