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

Side by Side Diff: chrome/SConscript

Issue 28161: Fix linux build bustage. (Closed) Base URL: svn://svn.chromium.org/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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'libjpeg', 108 'libjpeg',
109 'libpng', 109 'libpng',
110 'libxml', 110 'libxml',
111 'libxslt', 111 'libxslt',
112 'modp_b64', 112 'modp_b64',
113 'zlib', 113 'zlib',
114 114
115 'WTF', 115 'WTF',
116 'V8Bindings', 116 'V8Bindings',
117 'WebCore', 117 'WebCore',
118 'WebKit',
118 'default_plugin', 119 'default_plugin',
119 'glue', 120 'glue',
120 'JavaScriptCore_pcre', 121 'JavaScriptCore_pcre',
121 'port', 122 'port',
122 123
123 'browser', 124 'browser',
124 'common', 125 'common',
125 'debugger', 126 'debugger',
126 'util', 127 'util',
127 'renderer', 128 'renderer',
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 ] 641 ]
641 642
642 # TODO(port) 643 # TODO(port)
643 if env.Bit('windows'): 644 if env.Bit('windows'):
644 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) 645 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins)
645 646
646 env.Command('$DESTINATION_ROOT/resources/inspector', 647 env.Command('$DESTINATION_ROOT/resources/inspector',
647 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', 648 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end',
648 Copy('$TARGET', '$SOURCE'), 649 Copy('$TARGET', '$SOURCE'),
649 source_scanner=DirScanner) 650 source_scanner=DirScanner)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698