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 os | 5 import os |
6 | 6 |
7 Import(['env']) | 7 Import(['env']) |
8 | 8 |
9 env_res = env.Clone() | 9 env_res = env.Clone() |
10 env_test = env.Clone() | 10 env_test = env.Clone() |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 libs = [ | 179 libs = [ |
180 'browser/browser.lib', | 180 'browser/browser.lib', |
181 'browser/views/browser_views.lib', | 181 'browser/views/browser_views.lib', |
182 'browser/debugger/debugger.lib', | 182 'browser/debugger/debugger.lib', |
183 'common/common.lib', | 183 'common/common.lib', |
184 'installer/util/util.lib', | 184 'installer/util/util.lib', |
185 'libjscre.lib', | 185 'libjscre.lib', |
186 'plugin/plugin.lib', | 186 'plugin/plugin.lib', |
187 'renderer/renderer.lib', | 187 'renderer/renderer.lib', |
188 'third_party/hunspell/hunspell.lib', | 188 'third_party/hunspell/hunspell.lib', |
| 189 'third_party/libevent/libevent.lib', |
189 'third_party/sqlite/sqlite.lib', | 190 'third_party/sqlite/sqlite.lib', |
190 'views/views.lib', | 191 'views/views.lib', |
191 '$V8_DIR/v8.lib', | 192 '$V8_DIR/v8.lib', |
192 '$V8_DIR/snapshot-empty$OBJSUFFIX', | 193 '$V8_DIR/snapshot-empty$OBJSUFFIX', |
193 ] | 194 ] |
194 | 195 |
195 | 196 |
196 if env_dll['PLATFORM'] == 'win32': | 197 if env_dll['PLATFORM'] == 'win32': |
197 targets = [ | 198 targets = [ |
198 'chrome.dll', | 199 'chrome.dll', |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 env.Alias('chrome', i) | 484 env.Alias('chrome', i) |
484 | 485 |
485 | 486 |
486 i = env.Command('$TARGET_ROOT/resources/inspector', | 487 i = env.Command('$TARGET_ROOT/resources/inspector', |
487 '#/../webkit/port/page/inspector', | 488 '#/../webkit/port/page/inspector', |
488 Copy('$TARGET', '$SOURCE'), | 489 Copy('$TARGET', '$SOURCE'), |
489 source_scanner=DirScanner) | 490 source_scanner=DirScanner) |
490 env.Alias('chrome', i) | 491 env.Alias('chrome', i) |
491 | 492 |
492 env.Alias('chrome', env.Alias('webkit')) | 493 env.Alias('chrome', env.Alias('webkit')) |
OLD | NEW |