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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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.Bit('windows'): | 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) |
| 141 |
| 142 env.ChromeMSVSProject('$CHROME_DIR/browser/views/browser_views.vcproj', |
| 143 dependencies = [ |
| 144 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 145 '$GOOGLE_UPDATE_DIR/ondemand_updates.vcproj', |
| 146 '$CHROME_DIR/app/generated_resources.vcproj', |
| 147 ], |
| 148 guid='{FA537565-7B03-4FFC-AF15-F7A979B72E22}') |
OLD | NEW |