| 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/system.gni") |
| 6 |
| 5 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib | 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
| 6 source_set("view_manager") { | 8 source_set("view_manager") { |
| 7 sources = [ | 9 sources = [ |
| 10 "lib/bitmap_uploader.cc", |
| 11 "lib/bitmap_uploader.h", |
| 8 "lib/view.cc", | 12 "lib/view.cc", |
| 9 "lib/view_manager_client_factory.cc", | 13 "lib/view_manager_client_factory.cc", |
| 10 "lib/view_manager_client_impl.cc", | 14 "lib/view_manager_client_impl.cc", |
| 11 "lib/view_manager_client_impl.h", | 15 "lib/view_manager_client_impl.h", |
| 12 "lib/view_observer.cc", | 16 "lib/view_observer.cc", |
| 13 "lib/view_private.cc", | 17 "lib/view_private.cc", |
| 14 "lib/view_private.h", | 18 "lib/view_private.h", |
| 15 "view.h", | 19 "view.h", |
| 16 "view_manager.h", | 20 "view_manager.h", |
| 17 "view_manager_client_factory.h", | 21 "view_manager_client_factory.h", |
| 18 "view_manager_delegate.h", | 22 "view_manager_delegate.h", |
| 19 "view_observer.h", | 23 "view_observer.h", |
| 20 "window_manager_delegate.h", | 24 "window_manager_delegate.h", |
| 21 ] | 25 ] |
| 22 | 26 |
| 23 deps = [ | 27 deps = [ |
| 24 ":common", | 28 ":common", |
| 25 "//base", | 29 "//base", |
| 30 "//cc/surfaces", |
| 31 "//gpu", |
| 26 "//mojo/public/cpp/application:chromium", | 32 "//mojo/public/cpp/application:chromium", |
| 27 "//mojo/public/interfaces/application", | 33 "//mojo/public/interfaces/application", |
| 28 "//mojo/services/public/cpp/geometry", | 34 "//mojo/services/public/cpp/geometry", |
| 29 "//mojo/services/public/interfaces/geometry", | 35 "//mojo/services/public/interfaces/geometry", |
| 36 "//mojo/services/public/interfaces/gpu", |
| 30 "//mojo/services/public/interfaces/view_manager", | 37 "//mojo/services/public/interfaces/view_manager", |
| 31 "//mojo/services/public/interfaces/window_manager", | 38 "//mojo/services/public/interfaces/window_manager", |
| 32 "//skia", | 39 "//skia", |
| 33 "//ui/events", | 40 "//ui/events", |
| 34 "//ui/gfx", | 41 "//ui/gfx", |
| 35 "//ui/gfx/geometry", | 42 "//ui/gfx/geometry", |
| 36 ] | 43 ] + mojo_gles2_for_shared_library |
| 37 | 44 |
| 38 forward_dependent_configs_from = [ "//skia" ] | 45 forward_dependent_configs_from = [ "//skia" ] |
| 39 } | 46 } |
| 40 | 47 |
| 41 source_set("common") { | 48 source_set("common") { |
| 42 sources = [ | 49 sources = [ |
| 43 "types.h" | 50 "types.h" |
| 44 ] | 51 ] |
| 45 } | 52 } |
| OLD | NEW |