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