OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 component("surfaces") { | |
6 output_name = "mojo_surfaces_lib" | |
7 | |
8 sources = [ | |
9 "mojo_surfaces_export.h", | |
10 "surfaces_type_converters.cc", | |
11 "surfaces_type_converters.h", | |
12 ] | |
13 | |
14 defines = [ "MOJO_SURFACES_IMPLEMENTATION" ] | |
15 | |
16 public_deps = [ | |
17 "//cc/ipc:interfaces", | |
18 "//components/mus/public/interfaces", | |
19 "//gpu", | |
20 "//skia", | |
21 ] | |
22 | |
23 deps = [ | |
24 "//base", | |
25 "//cc", | |
26 "//cc/surfaces", | |
27 "//cc/surfaces:surface_id", | |
28 "//ui/gfx", | |
29 "//ui/gfx/geometry", | |
30 ] | |
31 } | |
OLD | NEW |