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", |
11 "resource_devtools_info.cc", | 11 "resource_devtools_info.cc", |
12 "resource_devtools_info.h", | 12 "resource_devtools_info.h", |
13 "resource_type.cc", | 13 "resource_type.cc", |
14 "resource_type.h", | 14 "resource_type.h", |
15 "webkit_common_export.h", | 15 "webkit_common_export.h", |
16 "webpreferences.cc", | 16 "webpreferences.cc", |
17 "webpreferences.h", | 17 "webpreferences.h", |
18 ] | 18 ] |
19 | 19 |
20 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] | 20 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] |
21 | 21 |
22 deps = [ | 22 deps = [ |
23 "//base", | 23 "//base", |
24 "//base:i18n", | 24 "//base:i18n", |
25 "//base/third_party/dynamic_annotations", | 25 "//base/third_party/dynamic_annotations", |
26 "//net", | 26 "//net", |
27 "//skia", | 27 "//skia", |
28 "//third_party/icu", | 28 "//third_party/icu", |
29 "//third_party/WebKit/public:blink_headers", | 29 "//third_party/WebKit/public:blink_headers", |
30 "//ui/base:ui_base", | 30 "//ui/base", |
31 "//ui/gfx", | 31 "//ui/gfx", |
32 "//ui/gfx/geometry", | 32 "//ui/gfx/geometry", |
33 "//ui/resources", | 33 "//ui/resources", |
34 "//url", | 34 "//url", |
35 "//webkit:resources", | 35 "//webkit:resources", |
36 ] | 36 ] |
37 forward_dependent_configs_from = [ | 37 forward_dependent_configs_from = [ |
38 "//third_party/WebKit/public:blink_headers", | 38 "//third_party/WebKit/public:blink_headers", |
39 ] | 39 ] |
40 } | 40 } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 } | 74 } |
75 | 75 |
76 deps = [ | 76 deps = [ |
77 ":common", | 77 ":common", |
78 "//base", | 78 "//base", |
79 "//base/third_party/dynamic_annotations", | 79 "//base/third_party/dynamic_annotations", |
80 "//net", | 80 "//net", |
81 "//url", | 81 "//url", |
82 ] | 82 ] |
83 } | 83 } |
OLD | NEW |