| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager | 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager |
| 8 shared_library("view_manager") { | 8 shared_library("view_manager") { |
| 9 output_name = "mojo_view_manager" | 9 output_name = "mojo_view_manager" |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "display_manager.h", | 47 "display_manager.h", |
| 48 "main.cc", | 48 "main.cc", |
| 49 "server_view.cc", | 49 "server_view.cc", |
| 50 "server_view.h", | 50 "server_view.h", |
| 51 "server_view_delegate.h", | 51 "server_view_delegate.h", |
| 52 "view_manager_export.h", | 52 "view_manager_export.h", |
| 53 "view_manager_init_service_context.cc", | 53 "view_manager_init_service_context.cc", |
| 54 "view_manager_init_service_context.h", | 54 "view_manager_init_service_context.h", |
| 55 "view_manager_init_service_impl.cc", | 55 "view_manager_init_service_impl.cc", |
| 56 "view_manager_init_service_impl.h", | 56 "view_manager_init_service_impl.h", |
| 57 "view_manager_service_delegate_client_impl.cc", |
| 58 "view_manager_service_delegate_client_impl.h", |
| 57 "view_manager_service_impl.cc", | 59 "view_manager_service_impl.cc", |
| 58 "view_manager_service_impl.h", | 60 "view_manager_service_impl.h", |
| 59 "window_manager_access_policy.cc", | 61 "window_manager_access_policy.cc", |
| 60 "window_manager_access_policy.h", | 62 "window_manager_access_policy.h", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| 63 | 65 |
| 64 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_unittests | 66 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_unittests |
| 65 test("mojo_view_manager_unittests") { | 67 test("mojo_view_manager_unittests") { |
| 66 deps = [ | 68 deps = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 87 if (is_component_build) { | 89 if (is_component_build) { |
| 88 deps += ["//ui/gl"] | 90 deps += ["//ui/gl"] |
| 89 } | 91 } |
| 90 | 92 |
| 91 sources = [ | 93 sources = [ |
| 92 "test_change_tracker.cc", | 94 "test_change_tracker.cc", |
| 93 "test_change_tracker.h", | 95 "test_change_tracker.h", |
| 94 "view_manager_unittest.cc", | 96 "view_manager_unittest.cc", |
| 95 ] | 97 ] |
| 96 } | 98 } |
| OLD | NEW |