OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("common") { |
| 6 output_name = "webkit_common" |
| 7 |
| 8 sources = [ |
| 9 "data_element.cc", |
| 10 "data_element.h", |
| 11 "resource_devtools_info.cc", |
| 12 "resource_devtools_info.h", |
| 13 "resource_type.cc", |
| 14 "resource_type.h", |
| 15 "webkit_common_export.h", |
| 16 "webpreferences.cc", |
| 17 "webpreferences.h", |
| 18 ] |
| 19 |
| 20 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] |
| 21 |
| 22 deps = [ |
| 23 "//base", |
| 24 "//base:i18n", |
| 25 "//base/third_party/dynamic_annotations", |
| 26 "//net", |
| 27 "//skia", |
| 28 "//third_party/icu", |
| 29 "//third_party/WebKit/public:blink_headers", |
| 30 "//ui/base:ui_base", |
| 31 "//ui/gfx", |
| 32 "//ui/gfx/geometry", |
| 33 "//ui/resources", |
| 34 "//url", |
| 35 "//webkit:resources", |
| 36 ] |
| 37 forward_dependent_configs_from = [ |
| 38 "//third_party/WebKit/public:blink_headers", |
| 39 ] |
| 40 } |
| 41 |
| 42 component("storage") { |
| 43 output_name = "webkit_storage_common" |
| 44 sources = [ |
| 45 "webkit_storage_common_export.h", |
| 46 "appcache/appcache_interfaces.cc", |
| 47 "appcache/appcache_interfaces.h", |
| 48 "blob/blob_data.cc", |
| 49 "blob/blob_data.h", |
| 50 "blob/scoped_file.cc", |
| 51 "blob/scoped_file.h", |
| 52 "blob/shareable_file_reference.cc", |
| 53 "blob/shareable_file_reference.h", |
| 54 "database/database_connections.cc", |
| 55 "database/database_connections.h", |
| 56 "database/database_identifier.cc", |
| 57 "database/database_identifier.h", |
| 58 "fileapi/directory_entry.cc", |
| 59 "fileapi/directory_entry.h", |
| 60 "fileapi/file_system_info.cc", |
| 61 "fileapi/file_system_info.h", |
| 62 "fileapi/file_system_mount_option.h", |
| 63 "fileapi/file_system_types.h", |
| 64 "fileapi/file_system_util.cc", |
| 65 "fileapi/file_system_util.h", |
| 66 "quota/quota_status_code.cc", |
| 67 "quota/quota_status_code.h", |
| 68 "quota/quota_types.h", |
| 69 ] |
| 70 |
| 71 defines = [ "WEBKIT_STORAGE_COMMON_IMPLEMENTATION" ] |
| 72 if (is_win) { |
| 73 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. |
| 74 } |
| 75 |
| 76 deps = [ |
| 77 ":common", |
| 78 "//base", |
| 79 "//base/third_party/dynamic_annotations", |
| 80 "//net", |
| 81 "//url", |
| 82 ] |
| 83 } |
OLD | NEW |