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