Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1204)

Side by Side Diff: webkit/glue/SConscript

Issue 28186: Reverting key change (again); this breaks every keyboard layout test there is... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/render_messages.h ('k') | webkit/glue/event_conversion.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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}')
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | webkit/glue/event_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698