| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'app_base', | 11 'target_name': 'app_base', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../third_party/sqlite/sqlite.gyp:sqlite', | 15 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 16 ], | 16 ], |
| 17 'sources': [ | 17 'sources': [ |
| 18 'sql/connection.cc', | 18 '../sql/connection.cc', |
| 19 'sql/connection.h', | 19 '../sql/connection.h', |
| 20 'sql/diagnostic_error_delegate.h', | 20 '../sql/diagnostic_error_delegate.h', |
| 21 'sql/init_status.h', | 21 '../sql/init_status.h', |
| 22 'sql/meta_table.cc', | 22 '../sql/meta_table.cc', |
| 23 'sql/meta_table.h', | 23 '../sql/meta_table.h', |
| 24 'sql/statement.cc', | 24 '../sql/statement.cc', |
| 25 'sql/statement.h', | 25 '../sql/statement.h', |
| 26 'sql/transaction.cc', | 26 '../sql/transaction.cc', |
| 27 'sql/transaction.h', | 27 '../sql/transaction.h', |
| 28 ], | 28 ], |
| 29 }, | 29 }, |
| 30 ], | 30 ], |
| 31 } | 31 } |
| OLD | NEW |