| 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 source_set("view_manager") { | 5 source_set("view_manager") { |
| 6 deps = [ | 6 deps = [ |
| 7 ":common", | 7 ":common", |
| 8 "//base", | 8 "//base", |
| 9 "//mojo/public/cpp/application:chromium", | 9 "//mojo/public/cpp/application:chromium", |
| 10 "//mojo/public/interfaces/application", | 10 "//mojo/public/interfaces/application", |
| 11 "//mojo/services/public/cpp/geometry", | 11 "//mojo/services/public/cpp/geometry", |
| 12 "//mojo/services/public/interfaces/geometry", | 12 "//mojo/services/public/interfaces/geometry", |
| 13 "//mojo/services/public/interfaces/view_manager", | 13 "//mojo/services/public/interfaces/view_manager", |
| 14 "//mojo/services/public/interfaces/window_manager", |
| 14 "//skia", | 15 "//skia", |
| 15 "//ui/events", | 16 "//ui/events", |
| 16 "//ui/gfx", | 17 "//ui/gfx", |
| 17 "//ui/gfx/geometry", | 18 "//ui/gfx/geometry", |
| 18 ] | 19 ] |
| 19 | 20 |
| 20 sources = [ | 21 sources = [ |
| 21 "lib/view.cc", | 22 "lib/view.cc", |
| 22 "lib/view_manager_client_factory.cc", | 23 "lib/view_manager_client_factory.cc", |
| 23 "lib/view_manager_client_impl.cc", | 24 "lib/view_manager_client_impl.cc", |
| 24 "lib/view_manager_client_impl.h", | 25 "lib/view_manager_client_impl.h", |
| 25 "lib/view_observer.cc", | 26 "lib/view_observer.cc", |
| 26 "lib/view_private.cc", | 27 "lib/view_private.cc", |
| 27 "lib/view_private.h", | 28 "lib/view_private.h", |
| 28 "view.h", | 29 "view.h", |
| 29 "view_manager.h", | 30 "view_manager.h", |
| 30 "view_manager_client_factory.h", | 31 "view_manager_client_factory.h", |
| 31 "view_manager_delegate.h", | 32 "view_manager_delegate.h", |
| 32 "view_observer.h", | 33 "view_observer.h", |
| 33 "window_manager_delegate.h", | 34 "window_manager_delegate.h", |
| 34 ] | 35 ] |
| 35 } | 36 } |
| 36 | 37 |
| 37 source_set("common") { | 38 source_set("common") { |
| 38 sources = [ | 39 sources = [ |
| 39 "types.h" | 40 "types.h" |
| 40 ] | 41 ] |
| 41 } | 42 } |
| OLD | NEW |