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

Side by Side Diff: chrome/SConscript

Issue 2964: Use libevent, second try. Changes this time:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 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 | « build/SConscript.main ('k') | net/DEPS » ('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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 libs = [ 179 libs = [
180 'browser/browser.lib', 180 'browser/browser.lib',
181 'browser/views/browser_views.lib', 181 'browser/views/browser_views.lib',
182 'browser/debugger/debugger.lib', 182 'browser/debugger/debugger.lib',
183 'common/common.lib', 183 'common/common.lib',
184 'installer/util/util.lib', 184 'installer/util/util.lib',
185 'libjscre.lib', 185 'libjscre.lib',
186 'plugin/plugin.lib', 186 'plugin/plugin.lib',
187 'renderer/renderer.lib', 187 'renderer/renderer.lib',
188 'third_party/hunspell/hunspell.lib', 188 'third_party/hunspell/hunspell.lib',
189 'third_party/libevent/libevent.lib',
189 'third_party/sqlite/sqlite.lib', 190 'third_party/sqlite/sqlite.lib',
190 'views/views.lib', 191 'views/views.lib',
191 '$V8_DIR/v8.lib', 192 '$V8_DIR/v8.lib',
192 '$V8_DIR/snapshot-empty$OBJSUFFIX', 193 '$V8_DIR/snapshot-empty$OBJSUFFIX',
193 ] 194 ]
194 195
195 196
196 if env_dll['PLATFORM'] == 'win32': 197 if env_dll['PLATFORM'] == 'win32':
197 targets = [ 198 targets = [
198 'chrome.dll', 199 'chrome.dll',
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 env.Alias('chrome', i) 486 env.Alias('chrome', i)
486 487
487 488
488 i = env.Command('$TARGET_ROOT/resources/inspector', 489 i = env.Command('$TARGET_ROOT/resources/inspector',
489 '#/../webkit/port/page/inspector', 490 '#/../webkit/port/page/inspector',
490 Copy('$TARGET', '$SOURCE'), 491 Copy('$TARGET', '$SOURCE'),
491 source_scanner=DirScanner) 492 source_scanner=DirScanner)
492 env.Alias('chrome', i) 493 env.Alias('chrome', i)
493 494
494 env.Alias('chrome', env.Alias('webkit')) 495 env.Alias('chrome', env.Alias('webkit'))
OLDNEW
« no previous file with comments | « build/SConscript.main ('k') | net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698