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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'webview_delegate.cc', | 113 'webview_delegate.cc', |
114 'webview_impl.cc', | 114 'webview_impl.cc', |
115 ] | 115 ] |
116 | 116 |
117 if env.Bit('windows'): | 117 if env.Bit('windows'): |
118 # TODO(port): These extra files aren't win32-specific, they've just not been | 118 # TODO(port): These extra files aren't win32-specific, they've just not been |
119 # tested on other platforms yet. | 119 # tested on other platforms yet. |
120 input_files.extend([ | 120 input_files.extend([ |
121 '$PENDING_DIR/AccessibleBase.cpp', | 121 '$PENDING_DIR/AccessibleBase.cpp', |
122 '$PENDING_DIR/AccessibleDocument.cpp', | 122 '$PENDING_DIR/AccessibleDocument.cpp', |
123 'glue_accessibility.cc', | 123 'webaccessibilitymanager_impl.cc', |
| 124 'glue_accessibility_object.cc' |
124 'plugins/mozilla_extensions.cc', | 125 'plugins/mozilla_extensions.cc', |
125 'plugins/webplugin_delegate_impl.cc', | 126 'plugins/webplugin_delegate_impl.cc', |
126 'webdropdata.cc', | 127 'webdropdata.cc', |
127 ]) | 128 ]) |
128 | 129 |
129 if env.Bit('windows'): | 130 if env.Bit('windows'): |
130 input_files.extend([ | 131 input_files.extend([ |
131 'plugins/plugin_lib_win.cc', | 132 'plugins/plugin_lib_win.cc', |
132 'plugins/plugin_list_win.cc', | 133 'plugins/plugin_list_win.cc', |
133 'plugins/plugin_stream_win.cc', | 134 'plugins/plugin_stream_win.cc', |
(...skipping 29 matching lines...) Expand all Loading... |
163 name = 'Glue', | 164 name = 'Glue', |
164 dependencies = [ | 165 dependencies = [ |
165 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 166 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
166 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 167 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
167 ('$WEBKIT_DIR/build/V8Bindings/' + | 168 ('$WEBKIT_DIR/build/V8Bindings/' + |
168 'V8Bindings_prebuild.vcproj'), | 169 'V8Bindings_prebuild.vcproj'), |
169 ('$WEBKIT_DIR/build/localized_strings/' + | 170 ('$WEBKIT_DIR/build/localized_strings/' + |
170 'localized_strings.vcproj'), | 171 'localized_strings.vcproj'), |
171 ], | 172 ], |
172 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 173 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
OLD | NEW |