| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 env.Alias('chrome', i) | 486 env.Alias('chrome', i) |
| 486 | 487 |
| 487 | 488 |
| 488 i = env.Command('$TARGET_ROOT/resources/inspector', | 489 i = env.Command('$TARGET_ROOT/resources/inspector', |
| 489 '#/../webkit/port/page/inspector', | 490 '#/../webkit/port/page/inspector', |
| 490 Copy('$TARGET', '$SOURCE'), | 491 Copy('$TARGET', '$SOURCE'), |
| 491 source_scanner=DirScanner) | 492 source_scanner=DirScanner) |
| 492 env.Alias('chrome', i) | 493 env.Alias('chrome', i) |
| 493 | 494 |
| 494 env.Alias('chrome', env.Alias('webkit')) | 495 env.Alias('chrome', env.Alias('webkit')) |
| OLD | NEW |