| 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.Bit('windows'): | 9 if env.Bit('windows'): |
| 10 env.Prepend( | 10 env.Prepend( |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 input_files += [ | 178 input_files += [ |
| 179 "root_view_win.cc", | 179 "root_view_win.cc", |
| 180 "view_win.cc" | 180 "view_win.cc" |
| 181 ] | 181 ] |
| 182 | 182 |
| 183 if env.Bit('linux'): | 183 if env.Bit('linux'): |
| 184 input_files += [ | 184 input_files += [ |
| 185 "root_view_gtk.cc", | 185 "root_view_gtk.cc", |
| 186 "view_gtk.cc" | 186 "view_gtk.cc" |
| 187 ] | 187 ] |
| 188 # TODO(port?): Incomplete and undecided Views stuff. These compile but aren't |
| 189 # currently needed, and they break the shared build due to missing symbols |
| 190 # (from files that aren't yet ported). |
| 191 input_files.Remove( |
| 192 'background.cc', |
| 193 'border.cc', |
| 194 'external_focus_tracker.cc', |
| 195 'grid_layout.cc', |
| 196 'image_view.cc', |
| 197 'label.cc', |
| 198 'layout_manager.cc', |
| 199 'painter.cc', |
| 200 'repeat_controller.cc', |
| 201 'root_view.cc', |
| 202 'scroll_bar.cc', |
| 203 'scroll_view.cc', |
| 204 'throbber.cc', |
| 205 'view.cc', |
| 206 'view_storage.cc', |
| 207 ) |
| 188 | 208 |
| 189 # TODO(port): Port to Linux. | 209 # TODO(port): Port to Linux. |
| 190 input_files.Remove( | 210 input_files.Remove( |
| 191 'accelerator.cc', | 211 'accelerator.cc', |
| 192 'accelerator_handler.cc', | 212 'accelerator_handler.cc', |
| 193 'accessibility/accessible_wrapper.cc', | 213 'accessibility/accessible_wrapper.cc', |
| 194 'accessibility/view_accessibility.cc', | 214 'accessibility/view_accessibility.cc', |
| 195 'aero_tooltip_manager.cc', | 215 'aero_tooltip_manager.cc', |
| 196 'base_button.cc', | 216 'base_button.cc', |
| 197 'bitmap_scroll_bar.cc', | 217 'bitmap_scroll_bar.cc', |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 '$(SolutionDir)../build/release.vsprops', | 364 '$(SolutionDir)../build/release.vsprops', |
| 345 '../../third_party/icu38/build/using_icu.vsprops', | 365 '../../third_party/icu38/build/using_icu.vsprops', |
| 346 ]) | 366 ]) |
| 347 | 367 |
| 348 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 368 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
| 349 'Debug|Win32', | 369 'Debug|Win32', |
| 350 tools=[ | 370 tools=[ |
| 351 MSVSTool('VCCLCompilerTool', | 371 MSVSTool('VCCLCompilerTool', |
| 352 UsePrecompiledHeader='1'), | 372 UsePrecompiledHeader='1'), |
| 353 ]) | 373 ]) |
| OLD | NEW |