| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |