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

Side by Side Diff: webkit/SConscript.javascriptcore_pcre

Issue 7847: Using $CHROME_SRC_DIR in place of hash/..... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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 | « webkit/SConscript ('k') | webkit/activex_shim/SConscript » ('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('env') 5 Import('env')
6 6
7 env = env.Clone( 7 env = env.Clone(
8 PCRE_DIR = '$WEBKIT_DIR/port/JavaScriptCore/pcre', 8 PCRE_DIR = '$WEBKIT_DIR/port/JavaScriptCore/pcre',
9 ) 9 )
10 10
(...skipping 13 matching lines...) Expand all
24 '/wd4510', 24 '/wd4510',
25 '/wd4512', 25 '/wd4512',
26 '/wd4610', 26 '/wd4610',
27 '/wd4706', 27 '/wd4706',
28 '/wd4800', 28 '/wd4800',
29 ], 29 ],
30 ) 30 )
31 31
32 dir = env.Dir('$PCRE_DIR') 32 dir = env.Dir('$PCRE_DIR')
33 33
34 dir.addRepository(env.Dir('#/../webkit/pending')) 34 dir.addRepository(env.Dir('$CHROME_SRC_DIR/webkit/pending'))
35 dir.addRepository(env.Dir('#/../third_party/WebKit/JavaScriptCore/pcre')) 35 dir.addRepository(env.Dir('$CHROME_SRC_DIR/third_party/WebKit/JavaScriptCore/pcr e'))
36 36
37 input_files = [ 37 input_files = [
38 '$PCRE_DIR/pcre_compile.cpp', 38 '$PCRE_DIR/pcre_compile.cpp',
39 '$PCRE_DIR/pcre_xclass.cpp', 39 '$PCRE_DIR/pcre_xclass.cpp',
40 '$PCRE_DIR/pcre_ucp_searchfuncs.cpp', 40 '$PCRE_DIR/pcre_ucp_searchfuncs.cpp',
41 '$PCRE_DIR/pcre_tables.cpp', 41 '$PCRE_DIR/pcre_tables.cpp',
42 '$PCRE_DIR/pcre_exec.cpp', 42 '$PCRE_DIR/pcre_exec.cpp',
43 ] 43 ]
44 44
45 env.ChromeStaticLibrary('JavaScriptCore_pcre', input_files) 45 env.ChromeStaticLibrary('JavaScriptCore_pcre', input_files)
46 46
OLDNEW
« no previous file with comments | « webkit/SConscript ('k') | webkit/activex_shim/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698