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 # GYP version: mojo/mojo_services.gypi:mojo_surfaces_service | |
6 shared_library("surfaces") { | |
7 output_name = "mojo_surfaces_service" | |
8 | |
9 deps = [ | |
10 "//base", | |
11 "//cc", | |
12 "//cc/surfaces", | |
13 "//ui/gfx/geometry", | |
14 "//mojo/application", | |
15 "//mojo/cc", | |
16 "//mojo/converters/geometry", | |
17 "//mojo/converters/surfaces", | |
18 "//mojo/environment:chromium", | |
19 "//mojo/public/c/system:for_shared_library", | |
20 "//mojo/public/gles2:for_shared_library", | |
21 "//mojo/services/public/interfaces/geometry", | |
22 "//mojo/services/public/interfaces/gpu", | |
23 "//mojo/services/public/interfaces/surfaces", | |
24 ] | |
25 | |
26 sources = [ | |
27 "surfaces_impl.cc", | |
28 "surfaces_impl.h", | |
29 "surfaces_service_application.cc", | |
30 "surfaces_service_application.h", | |
31 "surfaces_service_impl.cc", | |
32 "surfaces_service_impl.h", | |
33 ] | |
34 } | |
OLD | NEW |