blob: 9e6f7fa295d0afc13fc337ccd02e714495487823 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("common") {
sources = [
"print_messages.cc",
"print_messages.h",
"printing_param_traits_macros.h",
]
deps = [
"//base",
"//ipc",
"//printing",
"//third_party/WebKit/public:blink_headers",
"//ui/gfx",
"//ui/gfx/geometry",
"//ui/gfx/ipc",
"//ui/gfx/ipc/skia",
]
}
|