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 "webpreferences.cc", | |
14 "webpreferences.h", | |
15 ] | 13 ] |
16 | 14 |
17 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] | 15 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] |
18 | 16 |
19 deps = [ | 17 deps = [ |
20 "//base", | 18 "//base", |
21 "//base:i18n", | 19 "//base:i18n", |
22 "//base/third_party/dynamic_annotations", | 20 "//base/third_party/dynamic_annotations", |
23 "//net", | 21 "//net", |
24 "//skia", | 22 "//skia", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 } | 67 } |
70 | 68 |
71 deps = [ | 69 deps = [ |
72 ":common", | 70 ":common", |
73 "//base", | 71 "//base", |
74 "//base/third_party/dynamic_annotations", | 72 "//base/third_party/dynamic_annotations", |
75 "//net", | 73 "//net", |
76 "//url", | 74 "//url", |
77 ] | 75 ] |
78 } | 76 } |
OLD | NEW |