| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 'button_dropdown.cc', | 199 'button_dropdown.cc', |
| 200 'checkbox.cc', | 200 'checkbox.cc', |
| 201 'chrome_menu.cc', | 201 'chrome_menu.cc', |
| 202 'client_view.cc', | 202 'client_view.cc', |
| 203 'combo_box.cc', | 203 'combo_box.cc', |
| 204 'custom_frame_window.cc', | 204 'custom_frame_window.cc', |
| 205 'dialog_delegate.cc', | 205 'dialog_delegate.cc', |
| 206 'dialog_client_view.cc', | 206 'dialog_client_view.cc', |
| 207 'decision.cc', | 207 'decision.cc', |
| 208 'event.cc', | 208 'event.cc', |
| 209 'external_focus_tracker.cc', | |
| 210 'focus_manager.cc', | 209 'focus_manager.cc', |
| 211 'group_table_view.cc', | 210 'group_table_view.cc', |
| 212 'hwnd_view.cc', | 211 'hwnd_view.cc', |
| 213 'label.cc', | |
| 214 'link.cc', | 212 'link.cc', |
| 215 'menu.cc', | 213 'menu.cc', |
| 216 'menu_button.cc', | 214 'menu_button.cc', |
| 217 'message_box_view.cc', | 215 'message_box_view.cc', |
| 218 'native_button.cc', | 216 'native_button.cc', |
| 219 'native_control.cc', | 217 'native_control.cc', |
| 220 'native_scroll_bar.cc', | 218 'native_scroll_bar.cc', |
| 221 'non_client_view.cc', | 219 'non_client_view.cc', |
| 222 'painter.cc', | |
| 223 'radio_button.cc', | 220 'radio_button.cc', |
| 224 'resize_corner.cc', | 221 'resize_corner.cc', |
| 225 'root_view_drop_target.cc', | 222 'root_view_drop_target.cc', |
| 226 'scroll_view.cc', | |
| 227 'separator.cc', | 223 'separator.cc', |
| 228 'single_split_view.cc', | 224 'single_split_view.cc', |
| 229 'tabbed_pane.cc', | 225 'tabbed_pane.cc', |
| 230 'table_view.cc', | 226 'table_view.cc', |
| 231 'text_button.cc', | 227 'text_button.cc', |
| 232 'text_field.cc', | 228 'text_field.cc', |
| 233 'throbber.cc', | |
| 234 'tooltip_manager.cc', | 229 'tooltip_manager.cc', |
| 235 'tree_view.cc', | 230 'tree_view.cc', |
| 236 'widget_win.cc', | 231 'widget_win.cc', |
| 237 'window.cc', | 232 'window.cc', |
| 238 'window_delegate.cc', | 233 'window_delegate.cc', |
| 239 ) | 234 ) |
| 240 | 235 |
| 241 if env.Bit('mac'): | 236 if env.Bit('mac'): |
| 242 # TODO(port): Port to Mac. | 237 # TODO(port): Port to Mac. |
| 243 input_files.Remove( | 238 input_files.Remove( |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 '$(SolutionDir)../build/release.vsprops', | 344 '$(SolutionDir)../build/release.vsprops', |
| 350 '../../third_party/icu38/build/using_icu.vsprops', | 345 '../../third_party/icu38/build/using_icu.vsprops', |
| 351 ]) | 346 ]) |
| 352 | 347 |
| 353 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 348 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
| 354 'Debug|Win32', | 349 'Debug|Win32', |
| 355 tools=[ | 350 tools=[ |
| 356 MSVSTool('VCCLCompilerTool', | 351 MSVSTool('VCCLCompilerTool', |
| 357 UsePrecompiledHeader='1'), | 352 UsePrecompiledHeader='1'), |
| 358 ]) | 353 ]) |
| OLD | NEW |