| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 static_library("printing_common") { | 5 source_set("message_port") { |
| 6 sources = [ | 6 sources = [ |
| 7 "print_messages.cc", | 7 "web_message_port_channel_impl.cc", |
| 8 "print_messages.h", | 8 "web_message_port_channel_impl.h", |
| 9 "printing_param_traits_macros.h", | |
| 10 ] | 9 ] |
| 11 | 10 |
| 12 deps = [ | 11 public_deps = [ |
| 13 "//base", | 12 "//base", |
| 14 "//ipc", | 13 "//mojo/common", |
| 15 "//printing", | |
| 16 "//third_party/WebKit/public:blink", | 14 "//third_party/WebKit/public:blink", |
| 17 "//ui/gfx", | 15 "//third_party/mojo/src/mojo/public/cpp/system", |
| 18 ] | 16 ] |
| 19 } | 17 } |
| OLD | NEW |