| 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") | 5 import("//mojo/system.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager | 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager |
| 8 component("view_manager") { | 8 component("view_manager") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//base", | 10 "//base", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//webkit/common/gpu", | 32 "//webkit/common/gpu", |
| 33 ] + mojo_system_for_component + mojo_gles2_for_component | 33 ] + mojo_system_for_component + mojo_gles2_for_component |
| 34 | 34 |
| 35 defines = [ | 35 defines = [ |
| 36 "MOJO_VIEW_MANAGER_IMPLEMENTATION", | 36 "MOJO_VIEW_MANAGER_IMPLEMENTATION", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 sources = [ | 39 sources = [ |
| 40 "access_policy.h", | 40 "access_policy.h", |
| 41 "access_policy_delegate.h", | 41 "access_policy_delegate.h", |
| 42 "connection_manager.cc", |
| 43 "connection_manager.h", |
| 42 "context_factory_impl.cc", | 44 "context_factory_impl.cc", |
| 43 "context_factory_impl.h", | 45 "context_factory_impl.h", |
| 44 "default_access_policy.cc", | 46 "default_access_policy.cc", |
| 45 "default_access_policy.h", | 47 "default_access_policy.h", |
| 46 "display_manager.cc", | 48 "display_manager.cc", |
| 47 "display_manager.h", | 49 "display_manager.h", |
| 48 "display_manager_delegate.h", | 50 "display_manager_delegate.h", |
| 49 "ids.h", | 51 "ids.h", |
| 50 "main.cc", | 52 "main.cc", |
| 51 "node.cc", | |
| 52 "node.h", | |
| 53 "node_delegate.h", | |
| 54 "root_node_manager.cc", | |
| 55 "root_node_manager.h", | |
| 56 "screen_impl.cc", | 53 "screen_impl.cc", |
| 57 "screen_impl.h", | 54 "screen_impl.h", |
| 55 "server_view.cc", |
| 56 "server_view.h", |
| 57 "server_view_delegate.h", |
| 58 "view_manager_export.h", | 58 "view_manager_export.h", |
| 59 "view_manager_init_service_context.cc", | 59 "view_manager_init_service_context.cc", |
| 60 "view_manager_init_service_context.h", | 60 "view_manager_init_service_context.h", |
| 61 "view_manager_init_service_impl.cc", | 61 "view_manager_init_service_impl.cc", |
| 62 "view_manager_init_service_impl.h", | 62 "view_manager_init_service_impl.h", |
| 63 "view_manager_service_impl.cc", | 63 "view_manager_service_impl.cc", |
| 64 "view_manager_service_impl.h", | 64 "view_manager_service_impl.h", |
| 65 "window_manager_access_policy.cc", | 65 "window_manager_access_policy.cc", |
| 66 "window_manager_access_policy.h", | 66 "window_manager_access_policy.h", |
| 67 "window_tree_host_impl.cc", | 67 "window_tree_host_impl.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 93 "//ui/gfx/geometry", | 93 "//ui/gfx/geometry", |
| 94 "//ui/gl", | 94 "//ui/gl", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 sources = [ | 97 sources = [ |
| 98 "test_change_tracker.cc", | 98 "test_change_tracker.cc", |
| 99 "test_change_tracker.h", | 99 "test_change_tracker.h", |
| 100 "view_manager_unittest.cc", | 100 "view_manager_unittest.cc", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| OLD | NEW |