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/WebCore/WebCore.gypi', | 7 '../third_party/WebKit/WebCore/WebCore.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 # TODO: remove this helper when we have loops in GYP | 10 # TODO: remove this helper when we have loops in GYP |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 'appcache/appcache_request_handler.h', | 334 'appcache/appcache_request_handler.h', |
335 'appcache/appcache_service.cc', | 335 'appcache/appcache_service.cc', |
336 'appcache/appcache_service.h', | 336 'appcache/appcache_service.h', |
337 'appcache/manifest_parser.cc', | 337 'appcache/manifest_parser.cc', |
338 'appcache/manifest_parser.h', | 338 'appcache/manifest_parser.h', |
339 'appcache/web_application_cache_host_impl.cc', | 339 'appcache/web_application_cache_host_impl.cc', |
340 'appcache/web_application_cache_host_impl.h', | 340 'appcache/web_application_cache_host_impl.h', |
341 ], | 341 ], |
342 }, | 342 }, |
343 { | 343 { |
| 344 'target_name': 'database', |
| 345 'type': '<(library)', |
| 346 'msvs_guid': '1DA00DDD-44E5-4C56-B2CC-414FB0164492', |
| 347 'dependencies': [ |
| 348 '../base/base.gyp:base', |
| 349 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 350 ], |
| 351 'sources': [ |
| 352 'database/vfs_backend.cc', |
| 353 'database/vfs_backend.h', |
| 354 ], |
| 355 }, |
| 356 { |
344 'target_name': 'glue', | 357 'target_name': 'glue', |
345 'type': '<(library)', | 358 'type': '<(library)', |
346 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', | 359 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', |
347 'dependencies': [ | 360 'dependencies': [ |
348 '../net/net.gyp:net', | 361 '../net/net.gyp:net', |
349 'inspector_resources', | 362 'inspector_resources', |
350 'webcore.gyp:webcore', | 363 'webcore.gyp:webcore', |
351 'webkit', | 364 'webkit', |
352 'webkit_resources', | 365 'webkit_resources', |
353 'webkit_strings', | 366 'webkit_strings', |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 'files': [ | 663 'files': [ |
651 | 664 |
652 '<@(webinspector_image_files)', | 665 '<@(webinspector_image_files)', |
653 | 666 |
654 ], | 667 ], |
655 }, | 668 }, |
656 ], | 669 ], |
657 }, | 670 }, |
658 ], # targets | 671 ], # targets |
659 } | 672 } |
OLD | NEW |