| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 # GYP version: webkit/common/webkit_common.gyp:webkit_common | 5 # GYP version: webkit/common/webkit_common.gyp:webkit_common |
| 6 component("common") { | 6 component("common") { |
| 7 output_name = "webkit_common" | 7 output_name = "webkit_common" |
| 8 | 8 |
| 9 sources = [ | 9 sources = [ |
| 10 "data_element.cc", | 10 "data_element.cc", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 ] | 35 ] |
| 36 forward_dependent_configs_from = [ | 36 forward_dependent_configs_from = [ |
| 37 "//third_party/WebKit/public:blink_headers", | 37 "//third_party/WebKit/public:blink_headers", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 | 40 |
| 41 component("storage") { | 41 component("storage") { |
| 42 output_name = "webkit_storage_common" | 42 output_name = "webkit_storage_common" |
| 43 sources = [ | 43 sources = [ |
| 44 "webkit_storage_common_export.h", | 44 "webkit_storage_common_export.h", |
| 45 "appcache/appcache_interfaces.cc", | |
| 46 "appcache/appcache_interfaces.h", | |
| 47 "blob/blob_data.cc", | 45 "blob/blob_data.cc", |
| 48 "blob/blob_data.h", | 46 "blob/blob_data.h", |
| 49 "blob/scoped_file.cc", | 47 "blob/scoped_file.cc", |
| 50 "blob/scoped_file.h", | 48 "blob/scoped_file.h", |
| 51 "blob/shareable_file_reference.cc", | 49 "blob/shareable_file_reference.cc", |
| 52 "blob/shareable_file_reference.h", | 50 "blob/shareable_file_reference.h", |
| 53 "database/database_connections.cc", | 51 "database/database_connections.cc", |
| 54 "database/database_connections.h", | 52 "database/database_connections.h", |
| 55 "database/database_identifier.cc", | 53 "database/database_identifier.cc", |
| 56 "database/database_identifier.h", | 54 "database/database_identifier.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 73 } | 71 } |
| 74 | 72 |
| 75 deps = [ | 73 deps = [ |
| 76 ":common", | 74 ":common", |
| 77 "//base", | 75 "//base", |
| 78 "//base/third_party/dynamic_annotations", | 76 "//base/third_party/dynamic_annotations", |
| 79 "//net", | 77 "//net", |
| 80 "//url", | 78 "//url", |
| 81 ] | 79 ] |
| 82 } | 80 } |
| OLD | NEW |