| 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 | 9 |
| 10 env.Prepend( | 10 env.Prepend( |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 'tabs/tab_renderer.cc', | 125 'tabs/tab_renderer.cc', |
| 126 'tabs/tab_strip.cc', | 126 'tabs/tab_strip.cc', |
| 127 'tab_icon_view.cc', | 127 'tab_icon_view.cc', |
| 128 'tab_contents_container_view.cc', | 128 'tab_contents_container_view.cc', |
| 129 'theme_helpers.cc', | 129 'theme_helpers.cc', |
| 130 'toolbar_star_toggle.cc', | 130 'toolbar_star_toggle.cc', |
| 131 'toolbar_view.cc', | 131 'toolbar_view.cc', |
| 132 'user_data_dir_dialog.cc', | 132 'user_data_dir_dialog.cc', |
| 133 ] | 133 ] |
| 134 | 134 |
| 135 if env['PLATFORM'] == 'win32': | 135 if env.Bit('windows'): |
| 136 input_files.extend([ | 136 input_files.extend([ |
| 137 'find_bar_win.cc', | 137 'find_bar_win.cc', |
| 138 ]) | 138 ]) |
| 139 | 139 |
| 140 env.ChromeStaticLibrary('browser_views', input_files) | 140 env.ChromeStaticLibrary('browser_views', input_files) |
| OLD | NEW |