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

Side by Side Diff: chrome/SConscript

Issue 27008: Add linux printing module. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | « build/SConscript.main ('k') | printing/SConstruct » ('j') | no next file with comments »
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 '$LIBXML_DIR/DerivedSources/include', 94 '$LIBXML_DIR/DerivedSources/include',
95 '$LIBXML_DIR/include', 95 '$LIBXML_DIR/include',
96 '$BREAKPAD_DIR/src', 96 '$BREAKPAD_DIR/src',
97 ], 97 ],
98 LIBS = [ 98 LIBS = [
99 'base', 99 'base',
100 'base_gfx', 100 'base_gfx',
101 #'breakpad_handler', 101 #'breakpad_handler',
102 'googleurl', 102 'googleurl',
103 'media', 103 'media',
104 'printing',
104 'net', 105 'net',
105 'skia', 106 'skia',
106 'bzip2', 107 'bzip2',
107 'libjpeg', 108 'libjpeg',
108 'libpng', 109 'libpng',
109 'libxml', 110 'libxml',
110 'libxslt', 111 'libxslt',
111 'modp_b64', 112 'modp_b64',
112 'zlib', 113 'zlib',
113 114
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 ] 636 ]
636 637
637 # TODO(port) 638 # TODO(port)
638 if env.Bit('windows'): 639 if env.Bit('windows'):
639 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) 640 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins)
640 641
641 env.Command('$DESTINATION_ROOT/resources/inspector', 642 env.Command('$DESTINATION_ROOT/resources/inspector',
642 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', 643 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end',
643 Copy('$TARGET', '$SOURCE'), 644 Copy('$TARGET', '$SOURCE'),
644 source_scanner=DirScanner) 645 source_scanner=DirScanner)
OLDNEW
« no previous file with comments | « build/SConscript.main ('k') | printing/SConstruct » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698