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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 if env.Bit('windows'): | 752 if env.Bit('windows'): |
753 sconscript_files.extend([ | 753 sconscript_files.extend([ |
754 'app/resources/SConscript', | 754 'app/resources/SConscript', |
755 'app/theme/SConscript', | 755 'app/theme/SConscript', |
756 ]) | 756 ]) |
757 | 757 |
758 env.SConscript(sconscript_files, exports=['env', 'env_res', 'env_test']) | 758 env.SConscript(sconscript_files, exports=['env', 'env_res', 'env_test']) |
759 | 759 |
760 # TODO(port) | 760 # TODO(port) |
761 if env.Bit('windows'): | 761 if env.Bit('windows'): |
762 env.InstallAs('$LIBS_DIR/${LIBPREFIX}jscre${LIBSUFFIX}', | 762 env.InstallAs('$LIB_DIR/${LIBPREFIX}jscre${LIBSUFFIX}', |
763 '$WEBKIT_DIR/JavaScriptCore_pcre.lib') | 763 '$WEBKIT_DIR/JavaScriptCore_pcre.lib') |
764 | 764 |
765 | 765 |
766 env.Install('$DESTINATION_ROOT', install_targets) | 766 env.Install('$DESTINATION_ROOT', install_targets) |
767 | 767 |
768 | 768 |
769 gears_plugins = [ | 769 gears_plugins = [ |
770 '$GEARS_DIR/binaries/gears.dll', | 770 '$GEARS_DIR/binaries/gears.dll', |
771 '$GEARS_DIR/binaries/gears.pdb', | 771 '$GEARS_DIR/binaries/gears.pdb', |
772 ] | 772 ] |
773 | 773 |
774 # TODO(port) | 774 # TODO(port) |
775 if env.Bit('windows'): | 775 if env.Bit('windows'): |
776 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) | 776 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) |
777 | 777 |
778 env.Command('$DESTINATION_ROOT/resources/inspector', | 778 env.Command('$DESTINATION_ROOT/resources/inspector', |
779 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', | 779 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', |
780 Copy('$TARGET', '$SOURCE'), | 780 Copy('$TARGET', '$SOURCE'), |
781 source_scanner=DirScanner) | 781 source_scanner=DirScanner) |
OLD | NEW |