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