| 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 if env['PLATFORM'] == 'win32': | 9 if env['PLATFORM'] == 'win32': |
| 10 env.Append( | 10 env.Append( |
| (...skipping 17 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |