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

Side by Side Diff: webkit/glue/SConscript

Issue 8885: Implementation of the UI part of the autofill (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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 | « webkit/build/port/port.vcproj ('k') | webkit/glue/autocomplete_input_listener.h » ('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 if env['PLATFORM'] == 'win32': 9 if env['PLATFORM'] == 'win32':
10 env.Append( 10 env.Append(
(...skipping 17 matching lines...) Expand all
28 'cpp_binding_example.cc', 28 'cpp_binding_example.cc',
29 'cpp_bound_class.cc', 29 'cpp_bound_class.cc',
30 'cpp_variant.cc', 30 'cpp_variant.cc',
31 'debugger.cc', 31 'debugger.cc',
32 'dom_operations.cc', 32 'dom_operations.cc',
33 'dom_serializer.cc', 33 'dom_serializer.cc',
34 'dragclient_impl.cc', 34 'dragclient_impl.cc',
35 'editor_client_impl.cc', 35 'editor_client_impl.cc',
36 'entity_map.cc', 36 'entity_map.cc',
37 'event_conversion.cc', 37 'event_conversion.cc',
38 'form_autocomplete_listener.cc',
38 'feed_preview.cc', 39 'feed_preview.cc',
39 'glue_util.cc', 40 'glue_util.cc',
40 'glue_serialize.cc', 41 'glue_serialize.cc',
41 'image_decoder.cc', 42 'image_decoder.cc',
42 'image_resource_fetcher.cc', 43 'image_resource_fetcher.cc',
43 'inspector_client_impl.cc', 44 'inspector_client_impl.cc',
44 'localized_strings.cc', 45 'localized_strings.cc',
45 'multipart_response_delegate.cc', 46 'multipart_response_delegate.cc',
46 'npruntime_util.cc', 47 'npruntime_util.cc',
47 'password_autocomplete_listener.cc', 48 'password_autocomplete_listener.cc',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 101
101 if env['PLATFORM'] == 'win32': 102 if env['PLATFORM'] == 'win32':
102 input_files.extend([ 103 input_files.extend([
103 'webinputevent_win.cc', 104 'webinputevent_win.cc',
104 'webkit_glue_win.cc', 105 'webkit_glue_win.cc',
105 ]) 106 ])
106 elif env['PLATFORM'] == 'posix': 107 elif env['PLATFORM'] == 'posix':
107 input_files.append('webinputevent_linux.cc') 108 input_files.append('webinputevent_linux.cc')
108 109
109 env.ChromeStaticLibrary('glue', input_files) 110 env.ChromeStaticLibrary('glue', input_files)
OLDNEW
« no previous file with comments | « webkit/build/port/port.vcproj ('k') | webkit/glue/autocomplete_input_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698