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 CPPPATH = [ | 10 CPPPATH = [ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 'plugins/plugin_list_win.cc', | 100 'plugins/plugin_list_win.cc', |
101 'plugins/plugin_stream_win.cc', | 101 'plugins/plugin_stream_win.cc', |
102 'webcursor_win.cc', | 102 'webcursor_win.cc', |
103 'webinputevent_win.cc', | 103 'webinputevent_win.cc', |
104 'webkit_glue_win.cc', | 104 'webkit_glue_win.cc', |
105 ]) | 105 ]) |
106 elif env.Bit('linux'): | 106 elif env.Bit('linux'): |
107 input_files.extend([ | 107 input_files.extend([ |
108 'plugins/plugin_lib_linux.cc', | 108 'plugins/plugin_lib_linux.cc', |
109 'plugins/plugin_list_linux.cc', | 109 'plugins/plugin_list_linux.cc', |
| 110 'plugins/webplugin_delegate_impl_gtk.cc', |
110 'webcursor_gtk.cc', | 111 'webcursor_gtk.cc', |
111 'webinputevent_linux.cc', | 112 'webinputevent_linux.cc', |
112 'webkit_glue_gtk.cc', | 113 'webkit_glue_gtk.cc', |
113 ]) | 114 ]) |
114 elif env.Bit('mac'): | 115 elif env.Bit('mac'): |
115 input_files.extend([ | 116 input_files.extend([ |
116 'plugins/plugin_lib_mac.mm', | 117 'plugins/plugin_lib_mac.mm', |
117 'plugins/plugin_list_mac.mm', | 118 'plugins/plugin_list_mac.mm', |
118 'webcursor_mac.mm', | 119 'webcursor_mac.mm', |
119 ]) | 120 ]) |
120 | 121 |
121 if env.Bit('posix'): | 122 if env.Bit('posix'): |
122 input_files.extend([ | 123 input_files.extend([ |
123 'plugins/plugin_stream_posix.cc', | 124 'plugins/plugin_stream_posix.cc', |
124 ]) | 125 ]) |
125 | 126 |
126 env.ChromeLibrary('glue', input_files) | 127 env.ChromeLibrary('glue', input_files) |
127 | 128 |
128 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', | 129 env.ChromeMSVSProject('$WEBKIT_DIR/build/glue/glue.vcproj', |
129 name = 'Glue', | 130 name = 'Glue', |
130 dependencies = [ | 131 dependencies = [ |
131 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 132 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
132 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 133 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
133 ('$WEBKIT_DIR/build/V8Bindings/' + | 134 ('$WEBKIT_DIR/build/V8Bindings/' + |
134 'V8Bindings_prebuild.vcproj'), | 135 'V8Bindings_prebuild.vcproj'), |
135 ('$WEBKIT_DIR/build/localized_strings/' + | 136 ('$WEBKIT_DIR/build/localized_strings/' + |
136 'localized_strings.vcproj'), | 137 'localized_strings.vcproj'), |
137 ], | 138 ], |
138 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') | 139 guid='{C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09}') |
OLD | NEW |