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', | |
12 'defines': [ | 9 'defines': [ |
13 'APPCACHE_IMPLEMENTATION', | 10 'APPCACHE_IMPLEMENTATION', |
14 ], | 11 ], |
15 'dependencies': [ | 12 'dependencies': [ |
16 'quota', | 13 'quota', |
17 '<(DEPTH)/base/base.gyp:base_i18n', | 14 '<(DEPTH)/base/base.gyp:base_i18n', |
18 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
19 '<(DEPTH)/net/net.gyp:net', | 16 '<(DEPTH)/net/net.gyp:net', |
20 '<(DEPTH)/sql/sql.gyp:sql', | 17 '<(DEPTH)/sql/sql.gyp:sql', |
21 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | 18 '<(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', | |
23 ], | 19 ], |
24 'sources': [ | 20 'sources': [ |
25 # This list contains all .h and .cc in appcache except for test code. | 21 # This list contains all .h and .cc in appcache except for test code. |
26 'appcache.cc', | 22 'appcache.cc', |
27 'appcache.h', | 23 'appcache.h', |
28 'appcache_backend_impl.cc', | 24 'appcache_backend_impl.cc', |
29 'appcache_backend_impl.h', | 25 'appcache_backend_impl.h', |
30 'appcache_database.cc', | 26 'appcache_database.cc', |
31 'appcache_database.h', | 27 'appcache_database.h', |
32 'appcache_disk_cache.cc', | 28 'appcache_disk_cache.cc', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 'appcache_url_request_job.h', | 62 'appcache_url_request_job.h', |
67 'manifest_parser.cc', | 63 'manifest_parser.cc', |
68 'manifest_parser.h', | 64 'manifest_parser.h', |
69 'view_appcache_internals_job.h', | 65 'view_appcache_internals_job.h', |
70 'view_appcache_internals_job.cc', | 66 'view_appcache_internals_job.cc', |
71 'web_application_cache_host_impl.cc', | 67 'web_application_cache_host_impl.cc', |
72 'web_application_cache_host_impl.h', | 68 'web_application_cache_host_impl.h', |
73 'webkit_appcache.gypi', | 69 'webkit_appcache.gypi', |
74 ], | 70 ], |
75 'conditions': [ | 71 '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', | |
tony
2011/11/11 21:31:42
This breaks the webkit compile since the path to W
| |
81 ], | |
82 }], | |
76 ['inside_chromium_build==0', { | 83 ['inside_chromium_build==0', { |
77 'dependencies': [ | 84 'dependencies': [ |
78 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 85 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
79 ], | 86 ], |
80 }], | 87 }], |
81 ], | 88 ], |
82 }, | 89 }, |
83 ], | 90 ], |
84 } | 91 } |
OLD | NEW |