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