| 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 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 |
| 5 static_library("common") { | 7 static_library("common") { |
| 6 sources = [ | 8 sources = [ |
| 7 "visitedlink_common.cc", | 9 "visitedlink_common.cc", |
| 8 "visitedlink_common.h", | 10 "visitedlink_common.h", |
| 9 "visitedlink_message_generator.cc", | 11 ] |
| 10 "visitedlink_message_generator.h", | 12 public_deps = [ |
| 11 "visitedlink_messages.h", | 13 ":interfaces", |
| 12 ] | 14 ] |
| 13 | 15 |
| 14 deps = [ | 16 deps = [ |
| 17 ":interfaces", |
| 15 "//base", | 18 "//base", |
| 16 "//content/public/common", | 19 "//content/public/common", |
| 17 "//ipc", | 20 "//ipc", |
| 18 "//url", | 21 "//url", |
| 19 ] | 22 ] |
| 20 } | 23 } |
| 24 |
| 25 mojom("interfaces") { |
| 26 sources = [ |
| 27 "visitedlink.mojom", |
| 28 ] |
| 29 } |
| OLD | NEW |