| 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': 'sql', | 11 'target_name': 'sql', |
| 12 'type': 'static_library', | 12 'type': '<(component)', |
| 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 'defines': [ 'SQL_IMPLEMENTATION' ], |
| 17 'sources': [ | 18 'sources': [ |
| 18 'connection.cc', | 19 'connection.cc', |
| 19 'connection.h', | 20 'connection.h', |
| 20 'diagnostic_error_delegate.h', | 21 'diagnostic_error_delegate.h', |
| 21 'init_status.h', | 22 'init_status.h', |
| 22 'meta_table.cc', | 23 'meta_table.cc', |
| 23 'meta_table.h', | 24 'meta_table.h', |
| 24 'statement.cc', | 25 'statement.cc', |
| 25 'statement.h', | 26 'statement.h', |
| 26 'transaction.cc', | 27 'transaction.cc', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 52 'dependencies': [ | 53 'dependencies': [ |
| 53 '../base/allocator/allocator.gyp:allocator', | 54 '../base/allocator/allocator.gyp:allocator', |
| 54 ], | 55 ], |
| 55 }], | 56 }], |
| 56 ], | 57 ], |
| 57 }], | 58 }], |
| 58 ], | 59 ], |
| 59 }, | 60 }, |
| 60 ], | 61 ], |
| 61 } | 62 } |
| OLD | NEW |