| 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 'SConscript.unit_tests', | 418 'SConscript.unit_tests', |
| 419 'SConscript.ui_tests', | 419 'SConscript.ui_tests', |
| 420 ] | 420 ] |
| 421 | 421 |
| 422 # TODO(port) | 422 # TODO(port) |
| 423 if env['PLATFORM'] == 'win32': | 423 if env['PLATFORM'] == 'win32': |
| 424 env.SConscript(test_sconscript_files, exports=['env_test']) | 424 env.SConscript(test_sconscript_files, exports=['env_test']) |
| 425 | 425 |
| 426 | 426 |
| 427 sconscript_files = [ | 427 sconscript_files = [ |
| 428 'common/SConscript', |
| 428 '$THIRD_PARTY_DIR/sqlite/SConscript', | 429 '$THIRD_PARTY_DIR/sqlite/SConscript', |
| 429 ] | 430 ] |
| 430 | 431 |
| 431 # TODO(port) | 432 # TODO(port) |
| 432 if env['PLATFORM'] == 'win32': | 433 if env['PLATFORM'] == 'win32': |
| 433 sconscript_files.extend([ | 434 sconscript_files.extend([ |
| 434 'app/resources/SConscript', | 435 'app/resources/SConscript', |
| 435 'app/theme/SConscript', | 436 'app/theme/SConscript', |
| 436 'browser/SConscript', | 437 'browser/SConscript', |
| 437 'browser/views/SConscript', | 438 'browser/views/SConscript', |
| 438 'common/SConscript', | |
| 439 'installer/mini_installer/SConscript', | 439 'installer/mini_installer/SConscript', |
| 440 'installer/setup/SConscript', | 440 'installer/setup/SConscript', |
| 441 'installer/util/SConscript', | 441 'installer/util/SConscript', |
| 442 'plugin/SConscript', | 442 'plugin/SConscript', |
| 443 'renderer/SConscript', | 443 'renderer/SConscript', |
| 444 'test/activex_test_control/SConscript', | 444 'test/activex_test_control/SConscript', |
| 445 'test/automation/SConscript', | 445 'test/automation/SConscript', |
| 446 'test/chrome_plugin/SConscript', | 446 'test/chrome_plugin/SConscript', |
| 447 'test/interactive_ui/SConscript', | 447 'test/interactive_ui/SConscript', |
| 448 'test/memory_test/SConscript', | 448 'test/memory_test/SConscript', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 env.Alias('chrome', i) | 483 env.Alias('chrome', i) |
| 484 | 484 |
| 485 | 485 |
| 486 i = env.Command('$TARGET_ROOT/resources/inspector', | 486 i = env.Command('$TARGET_ROOT/resources/inspector', |
| 487 '#/../webkit/port/page/inspector', | 487 '#/../webkit/port/page/inspector', |
| 488 Copy('$TARGET', '$SOURCE'), | 488 Copy('$TARGET', '$SOURCE'), |
| 489 source_scanner=DirScanner) | 489 source_scanner=DirScanner) |
| 490 env.Alias('chrome', i) | 490 env.Alias('chrome', i) |
| 491 | 491 |
| 492 env.Alias('chrome', env.Alias('webkit')) | 492 env.Alias('chrome', env.Alias('webkit')) |
| OLD | NEW |