| 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", |
| 11 "data_element.h", | 11 "data_element.h", |
| 12 "webkit_common_export.h", | 12 "webkit_common_export.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] | 15 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//base:i18n", | |
| 20 "//base/third_party/dynamic_annotations", | |
| 21 "//net", | |
| 22 "//skia", | |
| 23 "//third_party/icu", | |
| 24 "//third_party/WebKit/public:blink_headers", | |
| 25 "//ui/base", | |
| 26 "//ui/gfx", | |
| 27 "//ui/gfx/geometry", | |
| 28 "//ui/resources", | |
| 29 "//url", | 19 "//url", |
| 30 "//webkit:resources", | |
| 31 ] | |
| 32 forward_dependent_configs_from = [ | |
| 33 "//third_party/WebKit/public:blink_headers", | |
| 34 ] | 20 ] |
| 35 } | 21 } |
| 36 | 22 |
| 37 component("storage") { | 23 component("storage") { |
| 38 output_name = "webkit_storage_common" | 24 output_name = "webkit_storage_common" |
| 39 sources = [ | 25 sources = [ |
| 40 "webkit_storage_common_export.h", | 26 "webkit_storage_common_export.h", |
| 41 "blob/blob_data.cc", | 27 "blob/blob_data.cc", |
| 42 "blob/blob_data.h", | 28 "blob/blob_data.h", |
| 43 "blob/scoped_file.cc", | 29 "blob/scoped_file.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 67 } | 53 } |
| 68 | 54 |
| 69 deps = [ | 55 deps = [ |
| 70 ":common", | 56 ":common", |
| 71 "//base", | 57 "//base", |
| 72 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 73 "//net", | 59 "//net", |
| 74 "//url", | 60 "//url", |
| 75 ] | 61 ] |
| 76 } | 62 } |
| OLD | NEW |