| 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 }, | 454 }, |
| 455 { | 455 { |
| 456 'target_name': 'database', | 456 'target_name': 'database', |
| 457 'type': '<(library)', | 457 'type': '<(library)', |
| 458 'msvs_guid': '1DA00DDD-44E5-4C56-B2CC-414FB0164492', | 458 'msvs_guid': '1DA00DDD-44E5-4C56-B2CC-414FB0164492', |
| 459 'dependencies': [ | 459 'dependencies': [ |
| 460 '../base/base.gyp:base', | 460 '../base/base.gyp:base', |
| 461 '../third_party/sqlite/sqlite.gyp:sqlite', | 461 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 462 ], | 462 ], |
| 463 'sources': [ | 463 'sources': [ |
| 464 'database/databases_table.cc', |
| 465 'database/databases_table.h', |
| 466 'database/database_tracker.cc', |
| 467 'database/database_tracker.h', |
| 464 'database/vfs_backend.cc', | 468 'database/vfs_backend.cc', |
| 465 'database/vfs_backend.h', | 469 'database/vfs_backend.h', |
| 466 ], | 470 ], |
| 467 }, | 471 }, |
| 468 { | 472 { |
| 469 'target_name': 'glue', | 473 'target_name': 'glue', |
| 470 'type': '<(library)', | 474 'type': '<(library)', |
| 471 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', | 475 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', |
| 472 'dependencies': [ | 476 'dependencies': [ |
| 473 '../app/app.gyp:app_base', | 477 '../app/app.gyp:app_base', |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 ], | 812 ], |
| 809 } | 813 } |
| 810 ], # targets | 814 ], # targets |
| 811 } | 815 } |
| 812 | 816 |
| 813 # Local Variables: | 817 # Local Variables: |
| 814 # tab-width:2 | 818 # tab-width:2 |
| 815 # indent-tabs-mode:nil | 819 # indent-tabs-mode:nil |
| 816 # End: | 820 # End: |
| 817 # vim: set expandtab tabstop=2 shiftwidth=2: | 821 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |