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", | |
12 "resource_devtools_info.h", | |
13 "resource_type.cc", | 11 "resource_type.cc", |
14 "resource_type.h", | 12 "resource_type.h", |
15 "webkit_common_export.h", | 13 "webkit_common_export.h", |
16 "webpreferences.cc", | 14 "webpreferences.cc", |
17 "webpreferences.h", | 15 "webpreferences.h", |
18 ] | 16 ] |
19 | 17 |
20 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] | 18 defines = [ "WEBKIT_COMMON_IMPLEMENTATION" ] |
21 | 19 |
22 deps = [ | 20 deps = [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 } | 72 } |
75 | 73 |
76 deps = [ | 74 deps = [ |
77 ":common", | 75 ":common", |
78 "//base", | 76 "//base", |
79 "//base/third_party/dynamic_annotations", | 77 "//base/third_party/dynamic_annotations", |
80 "//net", | 78 "//net", |
81 "//url", | 79 "//url", |
82 ] | 80 ] |
83 } | 81 } |
OLD | NEW |