| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'appcache', | 8 'target_name': 'appcache', |
| 9 # TODO(dpranke): Uncomment '<(component)', |
| 10 # 'type': '<(component)', |
| 11 'type': 'static_library', |
| 9 'defines': [ | 12 'defines': [ |
| 10 'APPCACHE_IMPLEMENTATION', | 13 'APPCACHE_IMPLEMENTATION', |
| 11 ], | 14 ], |
| 12 'dependencies': [ | 15 'dependencies': [ |
| 13 'quota', | 16 'quota', |
| 14 '<(DEPTH)/base/base.gyp:base_i18n', | 17 '<(DEPTH)/base/base.gyp:base_i18n', |
| 15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 18 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
| 16 '<(DEPTH)/net/net.gyp:net', | 19 '<(DEPTH)/net/net.gyp:net', |
| 17 '<(DEPTH)/sql/sql.gyp:sql', | 20 '<(DEPTH)/sql/sql.gyp:sql', |
| 18 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 21 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 22 # TODO(dpranke): Uncomment '<(DEPTH)/third_party/WebKit/Source/WebKit/ch
romium/WebKit.gyp:webkit', |
| 19 ], | 23 ], |
| 20 'sources': [ | 24 'sources': [ |
| 21 # This list contains all .h and .cc in appcache except for test code. | 25 # This list contains all .h and .cc in appcache except for test code. |
| 22 'appcache.cc', | 26 'appcache.cc', |
| 23 'appcache.h', | 27 'appcache.h', |
| 24 'appcache_backend_impl.cc', | 28 'appcache_backend_impl.cc', |
| 25 'appcache_backend_impl.h', | 29 'appcache_backend_impl.h', |
| 26 'appcache_database.cc', | 30 'appcache_database.cc', |
| 27 'appcache_database.h', | 31 'appcache_database.h', |
| 28 'appcache_disk_cache.cc', | 32 'appcache_disk_cache.cc', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'appcache_url_request_job.h', | 66 'appcache_url_request_job.h', |
| 63 'manifest_parser.cc', | 67 'manifest_parser.cc', |
| 64 'manifest_parser.h', | 68 'manifest_parser.h', |
| 65 'view_appcache_internals_job.h', | 69 'view_appcache_internals_job.h', |
| 66 'view_appcache_internals_job.cc', | 70 'view_appcache_internals_job.cc', |
| 67 'web_application_cache_host_impl.cc', | 71 'web_application_cache_host_impl.cc', |
| 68 'web_application_cache_host_impl.h', | 72 'web_application_cache_host_impl.h', |
| 69 'webkit_appcache.gypi', | 73 'webkit_appcache.gypi', |
| 70 ], | 74 ], |
| 71 'conditions': [ | 75 'conditions': [ |
| 72 [# TODO(dpranke): Remove once the circular dependencies in | |
| 73 # WebKit.gyp are fixed on the mac. | |
| 74 # See https://bugs.webkit.org/show_bug.cgi?id=68463 | |
| 75 'OS=="mac"', { | |
| 76 'type': 'static_library', | |
| 77 }, { | |
| 78 'type': '<(component)', | |
| 79 'dependencies': [ | |
| 80 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web
kit', | |
| 81 ], | |
| 82 }], | |
| 83 ['inside_chromium_build==0', { | 76 ['inside_chromium_build==0', { |
| 84 'dependencies': [ | 77 'dependencies': [ |
| 85 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 78 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 86 ], | 79 ], |
| 87 }], | 80 }], |
| 88 ], | 81 ], |
| 89 }, | 82 }, |
| 90 ], | 83 ], |
| 91 } | 84 } |
| OLD | NEW |