| 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 shared_library("ganesh_app") { |
| 6 shared_library("surfaces") { | |
| 7 output_name = "surfaces_service" | |
| 8 sources = [ | 6 sources = [ |
| 9 "surfaces_impl.cc", | 7 "ganesh_app.cc", |
| 10 "surfaces_impl.h", | 8 "painter.cc", |
| 11 "surfaces_service_application.cc", | 9 "painter.h", |
| 12 "surfaces_service_application.h", | |
| 13 "surfaces_service_impl.cc", | |
| 14 "surfaces_service_impl.h", | |
| 15 ] | 10 ] |
| 16 | 11 |
| 17 deps = [ | 12 deps = [ |
| 18 "//base", | 13 "//base", |
| 19 "//cc", | 14 "//cc", |
| 20 "//cc/surfaces", | 15 "//cc/surfaces", |
| 21 "//ui/gfx/geometry", | 16 "//examples/surfaces_app:bindings", |
| 17 "//examples/surfaces_app:util", |
| 18 "//gpu/command_buffer/client:gles2_interface", |
| 19 "//gpu/command_buffer/common", |
| 20 "//gpu/skia_bindings", |
| 22 "//mojo/application", | 21 "//mojo/application", |
| 23 "//mojo/cc", | 22 "//mojo/common", |
| 24 "//mojo/converters/geometry", | 23 "//mojo/converters/geometry", |
| 25 "//mojo/converters/surfaces", | 24 "//mojo/converters/surfaces", |
| 26 "//mojo/environment:chromium", | 25 "//mojo/environment:chromium", |
| 27 "//mojo/public/c/system:for_shared_library", | 26 "//mojo/public/c/system:for_shared_library", |
| 27 "//mojo/public/cpp/bindings", |
| 28 "//mojo/public/cpp/environment", |
| 29 "//mojo/public/cpp/system", |
| 30 "//mojo/public/cpp/utility", |
| 28 "//mojo/public/gles2:for_shared_library", | 31 "//mojo/public/gles2:for_shared_library", |
| 29 "//mojo/services/public/interfaces/geometry", | 32 "//mojo/services/public/interfaces/geometry", |
| 30 "//mojo/services/public/interfaces/gpu", | 33 "//mojo/services/public/interfaces/gpu", |
| 31 "//mojo/services/public/interfaces/surfaces", | 34 "//mojo/services/public/interfaces/surfaces", |
| 35 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 36 "//skia", |
| 37 "//ui/gfx", |
| 38 "//ui/gfx/geometry", |
| 32 ] | 39 ] |
| 33 } | 40 } |
| OLD | NEW |