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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 | 485 |
486 install_targets.append(chrome_exe[0]) | 486 install_targets.append(chrome_exe[0]) |
487 | 487 |
488 env.Requires('$DESTINATION_ROOT/chrome.exe', | 488 env.Requires('$DESTINATION_ROOT/chrome.exe', |
489 ['$DESTINATION_ROOT/chrome.dll', | 489 ['$DESTINATION_ROOT/chrome.dll', |
490 '$DESTINATION_ROOT/icudt38.dll', | 490 '$DESTINATION_ROOT/icudt38.dll', |
491 '$DESTINATION_ROOT/rlz.dll', | 491 '$DESTINATION_ROOT/rlz.dll', |
492 '$DESTINATION_ROOT/First Run', | 492 '$DESTINATION_ROOT/First Run', |
493 '$DESTINATION_ROOT/themes', | 493 '$DESTINATION_ROOT/themes', |
494 Alias('chrome_locales'), | 494 Alias('chrome_locales'), |
495 Alias('chrome_Dictionaries'), | |
496 ]) | 495 ]) |
497 | 496 |
498 env.Install('$DESTINATION_ROOT', '$CHROME_DIR/app/FirstRun') | 497 env.Install('$DESTINATION_ROOT', '$CHROME_DIR/app/FirstRun') |
499 | 498 |
500 # For release we want to run dependencies.py, may look something like: | 499 # For release we want to run dependencies.py, may look something like: |
501 #env.AddPostAction('$TARGET_ROOT/chrome.exe', | 500 #env.AddPostAction('$TARGET_ROOT/chrome.exe', |
502 # ('$PYTHON tools/build/win/dependencies.py ' + | 501 # ('$PYTHON tools/build/win/dependencies.py ' + |
503 # '$(TargetPath) chrome.exe.deps')) | 502 # '$(TargetPath) chrome.exe.deps')) |
504 | 503 |
505 p = env.ChromeMSVSProject('app/chrome_exe.vcproj', | 504 p = env.ChromeMSVSProject('app/chrome_exe.vcproj', |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 ] | 642 ] |
644 | 643 |
645 # TODO(port) | 644 # TODO(port) |
646 if env.Bit('windows'): | 645 if env.Bit('windows'): |
647 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) | 646 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) |
648 | 647 |
649 env.Command('$DESTINATION_ROOT/resources/inspector', | 648 env.Command('$DESTINATION_ROOT/resources/inspector', |
650 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', | 649 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', |
651 Copy('$TARGET', '$SOURCE'), | 650 Copy('$TARGET', '$SOURCE'), |
652 source_scanner=DirScanner) | 651 source_scanner=DirScanner) |
OLD | NEW |