| 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 ) | 8 ) |
| 9 | 9 |
| 10 env.Prepend( | 10 env.Prepend( |
| 11 CPPPATH = [ | 11 CPPPATH = [ |
| 12 '$ICU38_DIR/public/common', | 12 '$ICU38_DIR/public/common', |
| 13 '$ICU38_DIR/public/i18n', | 13 '$ICU38_DIR/public/i18n', |
| 14 '..', | 14 '$CHROME_SRC_DIR', |
| 15 ], | 15 ], |
| 16 ) | 16 ) |
| 17 | 17 |
| 18 env.Append( | 18 env.Append( |
| 19 CPPDEFINES = [ | 19 CPPDEFINES = [ |
| 20 'U_STATIC_IMPLEMENTATION', | 20 'U_STATIC_IMPLEMENTATION', |
| 21 | 21 |
| 22 'SQLITE_ENABLE_FTS2', | 22 'SQLITE_ENABLE_FTS2', |
| 23 'SQLITE_ENABLE_BROKEN_FTS2', | 23 'SQLITE_ENABLE_BROKEN_FTS2', |
| 24 'SQLITE_ENABLE_ICU', | 24 'SQLITE_ENABLE_ICU', |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 'vdbeaux.c', | 87 'vdbeaux.c', |
| 88 'vdbefifo.c', | 88 'vdbefifo.c', |
| 89 'vdbemem.c', | 89 'vdbemem.c', |
| 90 'vtab.c', | 90 'vtab.c', |
| 91 'where.c', | 91 'where.c', |
| 92 ] | 92 ] |
| 93 | 93 |
| 94 env.ChromeStaticLibrary('sqlite', input_files) | 94 env.ChromeStaticLibrary('sqlite', input_files) |
| 95 | 95 |
| 96 # TODO(tc): There should be a target to build the stand alone sqlite shell. | 96 # TODO(tc): There should be a target to build the stand alone sqlite shell. |
| OLD | NEW |