| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
| 7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
| 8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 'type': '<(library)', | 191 'type': '<(library)', |
| 192 'msvs_guid': '1DA00DDD-44E5-4C56-B2CC-414FB0164492', | 192 'msvs_guid': '1DA00DDD-44E5-4C56-B2CC-414FB0164492', |
| 193 'dependencies': [ | 193 'dependencies': [ |
| 194 '../app/app.gyp:app_base', | 194 '../app/app.gyp:app_base', |
| 195 '../base/base.gyp:base', | 195 '../base/base.gyp:base', |
| 196 '../third_party/sqlite/sqlite.gyp:sqlite', | 196 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 197 ], | 197 ], |
| 198 'sources': [ | 198 'sources': [ |
| 199 'database/databases_table.cc', | 199 'database/databases_table.cc', |
| 200 'database/databases_table.h', | 200 'database/databases_table.h', |
| 201 'database/database_connections.cc', |
| 202 'database/database_connections.h', |
| 201 'database/database_tracker.cc', | 203 'database/database_tracker.cc', |
| 202 'database/database_tracker.h', | 204 'database/database_tracker.h', |
| 203 'database/database_util.cc', | 205 'database/database_util.cc', |
| 204 'database/database_util.h', | 206 'database/database_util.h', |
| 207 'database/quota_table.cc', |
| 208 'database/quota_table.h', |
| 205 'database/vfs_backend.cc', | 209 'database/vfs_backend.cc', |
| 206 'database/vfs_backend.h', | 210 'database/vfs_backend.h', |
| 207 ], | 211 ], |
| 208 }, | 212 }, |
| 209 { | 213 { |
| 210 'target_name': 'glue', | 214 'target_name': 'glue', |
| 211 'type': '<(library)', | 215 'type': '<(library)', |
| 212 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', | 216 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', |
| 213 'dependencies': [ | 217 'dependencies': [ |
| 214 '../app/app.gyp:app_base', | 218 '../app/app.gyp:app_base', |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 ], | 556 ], |
| 553 }, | 557 }, |
| 554 ], # targets | 558 ], # targets |
| 555 } | 559 } |
| 556 | 560 |
| 557 # Local Variables: | 561 # Local Variables: |
| 558 # tab-width:2 | 562 # tab-width:2 |
| 559 # indent-tabs-mode:nil | 563 # indent-tabs-mode:nil |
| 560 # End: | 564 # End: |
| 561 # vim: set expandtab tabstop=2 shiftwidth=2: | 565 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |