Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: chrome/SConscript

Issue 40246: Generate data packs for all languages and allow us to load (Closed)
Patch Set: comment Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/app/chrome_strings.scons » ('j') | chrome/common/resource_bundle_linux.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 # TODO(sgk): Port these to browser_views.scons and views.scons. 612 # TODO(sgk): Port these to browser_views.scons and views.scons.
613 613
614 sconscript_files = [ 614 sconscript_files = [
615 'browser/views/SConscript', 615 'browser/views/SConscript',
616 'views/SConscript', 616 'views/SConscript',
617 ] 617 ]
618 618
619 if not env.WantSystemLib('hunspell'): 619 if not env.WantSystemLib('hunspell'):
620 sconscript_files.append('third_party/hunspell/SConscript') 620 sconscript_files.append('third_party/hunspell/SConscript')
621 621
622 # TODO(port)
623 if env.Bit('windows'):
624 sconscript_files.extend([
625 'app/resources/SConscript',
626 ])
627
628 env.SConscript(sconscript_files, exports=['env', 'env_res', 'env_test']) 622 env.SConscript(sconscript_files, exports=['env', 'env_res', 'env_test'])
629 623
630 # TODO(port) 624 # TODO(port)
631 if env.Bit('windows'): 625 if env.Bit('windows'):
632 env.InstallAs('$LIBS_DIR/${LIBPREFIX}jscre${LIBSUFFIX}', 626 env.InstallAs('$LIBS_DIR/${LIBPREFIX}jscre${LIBSUFFIX}',
633 '$WEBKIT_DIR/JavaScriptCore_pcre.lib') 627 '$WEBKIT_DIR/JavaScriptCore_pcre.lib')
634 628
635 629
636 env.Install('$DESTINATION_ROOT', install_targets) 630 env.Install('$DESTINATION_ROOT', install_targets)
637 631
638 632
639 gears_plugins = [ 633 gears_plugins = [
640 '$GEARS_DIR/binaries/gears.dll', 634 '$GEARS_DIR/binaries/gears.dll',
641 '$GEARS_DIR/binaries/gears.pdb', 635 '$GEARS_DIR/binaries/gears.pdb',
642 ] 636 ]
643 637
644 # TODO(port) 638 # TODO(port)
645 if env.Bit('windows'): 639 if env.Bit('windows'):
646 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) 640 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins)
647 641
648 env.Command('$DESTINATION_ROOT/resources/inspector', 642 env.Command('$DESTINATION_ROOT/resources/inspector',
649 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', 643 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end',
650 Copy('$TARGET', '$SOURCE'), 644 Copy('$TARGET', '$SOURCE'),
651 source_scanner=DirScanner) 645 source_scanner=DirScanner)
OLDNEW
« no previous file with comments | « no previous file | chrome/app/chrome_strings.scons » ('j') | chrome/common/resource_bundle_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698