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