| 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 | 5 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
| 6 source_set("view_manager") { | 6 source_set("view_manager") { |
| 7 sources = [ | 7 sources = [ |
| 8 "lib/bitmap_uploader.cc", | 8 "lib/bitmap_uploader.cc", |
| 9 "lib/bitmap_uploader.h", | 9 "lib/bitmap_uploader.h", |
| 10 "lib/view.cc", | 10 "lib/view.cc", |
| 11 "lib/view_manager_client_factory.cc", | 11 "lib/view_manager_client_factory.cc", |
| 12 "lib/view_manager_client_impl.cc", | 12 "lib/view_manager_client_impl.cc", |
| 13 "lib/view_manager_client_impl.h", | 13 "lib/view_manager_client_impl.h", |
| 14 "lib/view_manager_context.cc", |
| 14 "lib/view_observer.cc", | 15 "lib/view_observer.cc", |
| 15 "lib/view_private.cc", | 16 "lib/view_private.cc", |
| 16 "lib/view_private.h", | 17 "lib/view_private.h", |
| 17 "view.h", | 18 "view.h", |
| 18 "view_manager.h", | 19 "view_manager.h", |
| 19 "view_manager_client_factory.h", | 20 "view_manager_client_factory.h", |
| 21 "view_manager_context.h", |
| 20 "view_manager_delegate.h", | 22 "view_manager_delegate.h", |
| 21 "view_observer.h", | 23 "view_observer.h", |
| 22 "window_manager_delegate.h", | 24 "window_manager_delegate.h", |
| 23 ] | 25 ] |
| 24 | 26 |
| 25 public_deps = [ | 27 public_deps = [ |
| 26 ":common", | 28 ":common", |
| 27 "//skia", | 29 "//skia", |
| 28 ] | 30 ] |
| 29 deps = [ | 31 deps = [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 53 | 55 |
| 54 source_set("common") { | 56 source_set("common") { |
| 55 sources = [ | 57 sources = [ |
| 56 "ids.h", | 58 "ids.h", |
| 57 "types.h", | 59 "types.h", |
| 58 ] | 60 ] |
| 59 public_deps = [ | 61 public_deps = [ |
| 60 "//base", | 62 "//base", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| OLD | NEW |