blob: bcc7a289dd85af9a26b51c87cb5b57de50926b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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("public") {
sources = [
"type_converters.cc",
"type_converters.h",
]
public_deps = [
"//skia/public/interfaces",
]
deps = [
"//base",
"//mojo/public/cpp/bindings",
"//skia",
]
}
|