| 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 mojo_native_application("surfaces") { | 7 mojo_native_application("surfaces") { |
| 8 output_name = "surfaces_service" | 8 output_name = "surfaces_service" |
| 9 sources = [ | 9 sources = [ |
| 10 "display_factory_impl.cc", |
| 11 "display_factory_impl.h", |
| 12 "display_impl.cc", |
| 13 "display_impl.h", |
| 10 "surfaces_impl.cc", | 14 "surfaces_impl.cc", |
| 11 "surfaces_impl.h", | 15 "surfaces_impl.h", |
| 12 "surfaces_scheduler.cc", | 16 "surfaces_scheduler.cc", |
| 13 "surfaces_scheduler.h", | 17 "surfaces_scheduler.h", |
| 14 "surfaces_service_application.cc", | 18 "surfaces_service_application.cc", |
| 15 "surfaces_service_application.h", | 19 "surfaces_service_application.h", |
| 16 ] | 20 ] |
| 17 | 21 |
| 18 deps = [ | 22 deps = [ |
| 19 "//base", | 23 "//base", |
| 20 "//cc", | 24 "//cc", |
| 21 "//cc/surfaces", | 25 "//cc/surfaces", |
| 26 "//cc/surfaces:surface_id", |
| 22 "//ui/gfx/geometry", | 27 "//ui/gfx/geometry", |
| 23 "//mojo/application", | 28 "//mojo/application", |
| 24 "//mojo/cc", | 29 "//mojo/cc", |
| 25 "//mojo/common", | 30 "//mojo/common", |
| 26 "//mojo/common:tracing_impl", | 31 "//mojo/common:tracing_impl", |
| 27 "//mojo/converters/geometry", | 32 "//mojo/converters/geometry", |
| 28 "//mojo/converters/surfaces", | 33 "//mojo/converters/surfaces", |
| 29 "//mojo/environment:chromium", | 34 "//mojo/environment:chromium", |
| 30 "//mojo/public/c/gles2", | 35 "//mojo/public/c/gles2", |
| 31 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
| 32 "//mojo/services/geometry/public/interfaces", | 37 "//mojo/services/geometry/public/interfaces", |
| 33 "//mojo/services/gpu/public/interfaces", | 38 "//mojo/services/gpu/public/interfaces", |
| 34 "//mojo/services/surfaces/public/interfaces", | 39 "//mojo/services/surfaces/public/interfaces", |
| 35 ] | 40 ] |
| 36 } | 41 } |
| OLD | NEW |