| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 'webcursor_win.cc', | 107 'webcursor_win.cc', |
| 108 'webinputevent_win.cc', | 108 'webinputevent_win.cc', |
| 109 'webkit_glue_win.cc', | 109 'webkit_glue_win.cc', |
| 110 ]) | 110 ]) |
| 111 elif env['PLATFORM'] == 'posix': | 111 elif env['PLATFORM'] == 'posix': |
| 112 input_files.extend([ | 112 input_files.extend([ |
| 113 'webcursor_gtk.cc', | 113 'webcursor_gtk.cc', |
| 114 'webinputevent_linux.cc', | 114 'webinputevent_linux.cc', |
| 115 'webkit_glue_gtk.cc', | 115 'webkit_glue_gtk.cc', |
| 116 ]) | 116 ]) |
| 117 elif env['PLATFORM'] == 'darwin': |
| 118 input_files.extend([ |
| 119 'webcursor_mac.mm', |
| 120 ]) |
| 117 | 121 |
| 118 if env['PLATFORM'] in ('posix', 'darwin'): | 122 if env['PLATFORM'] in ('posix', 'darwin'): |
| 119 input_files.extend([ | 123 input_files.extend([ |
| 120 'plugins/plugin_stream_posix.cc', | 124 'plugins/plugin_stream_posix.cc', |
| 121 ]) | 125 ]) |
| 122 | 126 |
| 123 env.ChromeStaticLibrary('glue', input_files) | 127 env.ChromeStaticLibrary('glue', input_files) |
| 124 | 128 |
| OLD | NEW |