| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 7 |
| 7 static_library("common") { | 8 mojom("interfaces") { |
| 8 sources = [ | 9 sources = [ |
| 9 "pdf_message_generator.cc", | 10 "pdf.mojom", |
| 10 "pdf_message_generator.h", | |
| 11 "pdf_messages.h", | |
| 12 ] | 11 ] |
| 13 | 12 |
| 14 deps = [ | 13 public_deps = [ |
| 15 "//base", | 14 "//third_party/WebKit/public:mojo_bindings", |
| 16 "//content/public/common", | 15 "//url/mojo:url_mojom_gurl", |
| 17 "//ipc", | |
| 18 "//url", | |
| 19 ] | 16 ] |
| 17 |
| 18 overridden_deps = [ "//third_party/WebKit/public:mojo_bindings" ] |
| 19 component_deps = [ "//content/public/common" ] |
| 20 |
| 21 overridden_deps_blink = [ "//third_party/WebKit/public:mojo_bindings" ] |
| 22 component_deps_blink = [ "//third_party/WebKit/Source/platform" ] |
| 20 } | 23 } |
| OLD | NEW |