Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(720)

Side by Side Diff: components/printing/common/BUILD.gn

Issue 2477283002: Convert printing IPCs to Mojo
Patch Set: Fix more Windows compile errors Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 import("//mojo/public/tools/bindings/mojom.gni")
6
5 static_library("common") { 7 static_library("common") {
6 sources = [ 8 sources = [
7 "print_messages.cc", 9 "print_messages.cc",
8 "print_messages.h", 10 "print_messages.h",
11 "printing_param_traits.cc",
12 "printing_param_traits.h",
9 "printing_param_traits_macros.h", 13 "printing_param_traits_macros.h",
10 ] 14 ]
11 15
12 deps = [ 16 deps = [
13 "//base", 17 "//base",
14 "//ipc", 18 "//ipc",
15 "//printing", 19 "//printing",
16 "//third_party/WebKit/public:blink_headers", 20 "//third_party/WebKit/public:blink_headers",
17 "//ui/gfx", 21 "//ui/gfx",
18 "//ui/gfx/geometry", 22 "//ui/gfx/geometry",
19 "//ui/gfx/ipc", 23 "//ui/gfx/ipc",
20 "//ui/gfx/ipc/geometry", 24 "//ui/gfx/ipc/geometry",
21 "//ui/gfx/ipc/skia", 25 "//ui/gfx/ipc/skia",
22 ] 26 ]
23 } 27 }
28
29 mojom("interfaces") {
30 sources = [
31 "printing.mojom",
32 ]
33
34 public_deps = [
35 "//mojo/common:common_custom_types",
36 ]
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698