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

Side by Side Diff: chrome/common/ipc_tests.scons

Issue 21367: Add additional library dependencies for the shared linking of ipc_tests. (Closed) Base URL: svn://chrome-svn/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('env', 'env') 5 Import('env', 'env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 env.SConscript([ 9 env.SConscript([
10 '$BASE_DIR/using_base.scons', 10 '$BASE_DIR/using_base.scons',
(...skipping 16 matching lines...) Expand all
27 env.Append( 27 env.Append(
28 LIBS = [ 28 LIBS = [
29 'glue', 29 'glue',
30 'WTF', 30 'WTF',
31 ], 31 ],
32 ) 32 )
33 33
34 if env.Bit('posix'): 34 if env.Bit('posix'):
35 env.SConscript([ 35 env.SConscript([
36 '$LIBEVENT_DIR/using_libevent.scons', 36 '$LIBEVENT_DIR/using_libevent.scons',
37 '$CHROME_SRC_DIR/build/using_v8.scons', # needed for shared link deps
38 '$LIBXSLT_DIR/using_libxslt.scons', # needed for shared link deps
37 ], {'env':env}) 39 ], {'env':env})
40 # needed for shared link deps
41 env.Append(
42 LIBS = [
43 'JavaScriptCore_pcre',
44 'V8Bindings',
45 'WebCore',
46 'browser',
47 'port',
48 'renderer',
49 'sqlite',
50 ]
51 )
38 52
39 # TODO(sgk): convert into a using_*.scons pattern when we update WebKit. 53 # TODO(sgk): convert into a using_*.scons pattern when we update WebKit.
40 env.Append( 54 env.Append(
41 CPPPATH = [ 55 CPPPATH = [
42 '$WEBKIT_DIR/build/localized_strings', 56 '$WEBKIT_DIR/build/localized_strings',
43 ], 57 ],
44 ) 58 )
45 59
46 env.Prepend( 60 env.Prepend(
47 CPPPATH = [ 61 CPPPATH = [
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 '$(SolutionDir)../testing/using_gtest.vsprops', 163 '$(SolutionDir)../testing/using_gtest.vsprops',
150 ]) 164 ])
151 165
152 p.AddConfig('Release|Win32', 166 p.AddConfig('Release|Win32',
153 InheritedPropertySheets=[ 167 InheritedPropertySheets=[
154 '$(SolutionDir)../build/common.vsprops', 168 '$(SolutionDir)../build/common.vsprops',
155 '$(SolutionDir)../build/release.vsprops', 169 '$(SolutionDir)../build/release.vsprops',
156 '$(SolutionDir)../skia/using_skia.vsprops', 170 '$(SolutionDir)../skia/using_skia.vsprops',
157 '$(SolutionDir)../testing/using_gtest.vsprops', 171 '$(SolutionDir)../testing/using_gtest.vsprops',
158 ]) 172 ])
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