| 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_view_manager_lib | |
| 6 source_set("view_manager") { | 5 source_set("view_manager") { |
| 7 sources = [ | 6 sources = [ |
| 8 "lib/view.cc", | 7 "lib/view.cc", |
| 9 "lib/view_manager_client_factory.cc", | 8 "lib/view_manager_client_factory.cc", |
| 10 "lib/view_manager_client_impl.cc", | 9 "lib/view_manager_client_impl.cc", |
| 11 "lib/view_manager_client_impl.h", | 10 "lib/view_manager_client_impl.h", |
| 12 "lib/view_manager_context.cc", | 11 "lib/view_manager_context.cc", |
| 13 "lib/view_observer.cc", | 12 "lib/view_observer.cc", |
| 14 "lib/view_private.cc", | 13 "lib/view_private.cc", |
| 15 "lib/view_private.h", | 14 "lib/view_private.h", |
| 16 "view.h", | 15 "view.h", |
| 17 "view_manager.h", | 16 "view_manager.h", |
| 18 "view_manager_client_factory.h", | 17 "view_manager_client_factory.h", |
| 19 "view_manager_context.h", | 18 "view_manager_context.h", |
| 20 "view_manager_delegate.h", | 19 "view_manager_delegate.h", |
| 21 "view_observer.h", | 20 "view_observer.h", |
| 21 "view_tracker.cc", |
| 22 "view_tracker.h", |
| 22 "window_manager_delegate.h", | 23 "window_manager_delegate.h", |
| 23 ] | 24 ] |
| 24 | 25 |
| 25 public_deps = [ | 26 public_deps = [ |
| 26 ":common", | 27 ":common", |
| 27 ] | 28 ] |
| 28 deps = [ | 29 deps = [ |
| 29 "//base", | 30 "//base", |
| 30 "//mojo/public/c/gles2", | 31 "//mojo/public/c/gles2", |
| 31 "//mojo/public/cpp/bindings:bindings", | 32 "//mojo/public/cpp/bindings:bindings", |
| 32 "//mojo/public/interfaces/application", | 33 "//mojo/public/interfaces/application", |
| 33 "//mojo/services/public/interfaces/geometry", | 34 "//mojo/services/public/interfaces/geometry", |
| 34 "//mojo/services/public/interfaces/input_events:input_events", | 35 "//mojo/services/public/interfaces/input_events:input_events", |
| 35 "//mojo/services/public/interfaces/surfaces:surface_id", | 36 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 36 "//mojo/services/public/interfaces/view_manager", | 37 "//mojo/services/public/interfaces/view_manager", |
| 37 "//mojo/services/public/interfaces/window_manager", | 38 "//mojo/services/public/interfaces/window_manager", |
| 38 ] | 39 ] |
| 39 } | 40 } |
| 40 | 41 |
| 41 source_set("common") { | 42 source_set("common") { |
| 42 sources = [ | 43 sources = [ |
| 43 "ids.h", | 44 "ids.h", |
| 44 "types.h", | 45 "types.h", |
| 45 ] | 46 ] |
| 46 public_deps = [ | 47 public_deps = [ |
| 47 "//base", | 48 "//base", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| OLD | NEW |