| 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 component("common") { | 6 component("common") { |
| 6 output_name = "webkit_common" | 7 output_name = "webkit_common" |
| 7 | 8 |
| 8 sources = [ | 9 sources = [ |
| 9 "data_element.cc", | 10 "data_element.cc", |
| 10 "data_element.h", | 11 "data_element.h", |
| 11 "resource_type.cc", | 12 "resource_type.cc", |
| 12 "resource_type.h", | 13 "resource_type.h", |
| 13 "webkit_common_export.h", | 14 "webkit_common_export.h", |
| 14 "webpreferences.cc", | 15 "webpreferences.cc", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 } | 73 } |
| 73 | 74 |
| 74 deps = [ | 75 deps = [ |
| 75 ":common", | 76 ":common", |
| 76 "//base", | 77 "//base", |
| 77 "//base/third_party/dynamic_annotations", | 78 "//base/third_party/dynamic_annotations", |
| 78 "//net", | 79 "//net", |
| 79 "//url", | 80 "//url", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| OLD | NEW |