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