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

Side by Side Diff: chrome/SConscript

Issue 27147: Linux: server side backing stores (Closed)
Patch Set: ... 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/browser/browser.scons » ('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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 'browser', 123 'browser',
124 'common', 124 'common',
125 'debugger', 125 'debugger',
126 'util', 126 'util',
127 'renderer', 127 'renderer',
128 'hunspell', 128 'hunspell',
129 'sdch', 129 'sdch',
130 'sqlite', 130 'sqlite',
131 'v8_snapshot', 131 'v8_snapshot',
132
133 'X11',
134 'Xrender',
135 'Xext',
132 ], 136 ],
133 ) 137 )
134 138
135 if env.Bit('windows'): 139 if env.Bit('windows'):
136 # These libraries don't work on non-Windows yet. 140 # These libraries don't work on non-Windows yet.
137 env_dll.Append( 141 env_dll.Append(
138 LIBS = [ 142 LIBS = [
139 'plugin', 143 'plugin',
140 ] 144 ]
141 ) 145 )
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 ] 640 ]
637 641
638 # TODO(port) 642 # TODO(port)
639 if env.Bit('windows'): 643 if env.Bit('windows'):
640 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) 644 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins)
641 645
642 env.Command('$DESTINATION_ROOT/resources/inspector', 646 env.Command('$DESTINATION_ROOT/resources/inspector',
643 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', 647 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end',
644 Copy('$TARGET', '$SOURCE'), 648 Copy('$TARGET', '$SOURCE'),
645 source_scanner=DirScanner) 649 source_scanner=DirScanner)
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698