| 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 sources = [ | 9 sources = [ |
| 10 "access_policy.h", | 10 "access_policy.h", |
| 11 "access_policy_delegate.h", | 11 "access_policy_delegate.h", |
| 12 "connection_manager.cc", | 12 "connection_manager.cc", |
| 13 "connection_manager.h", | 13 "connection_manager.h", |
| 14 "connection_manager_delegate.h", |
| 14 "default_access_policy.cc", | 15 "default_access_policy.cc", |
| 15 "default_access_policy.h", | 16 "default_access_policy.h", |
| 16 "display_manager.cc", | 17 "display_manager.cc", |
| 17 "display_manager.h", | 18 "display_manager.h", |
| 18 "main.cc", | 19 "main.cc", |
| 19 "server_view.cc", | 20 "server_view.cc", |
| 20 "server_view.h", | 21 "server_view.h", |
| 21 "server_view_delegate.h", | 22 "server_view_delegate.h", |
| 22 "view_manager_export.h", | 23 "view_manager_export.h", |
| 23 "view_manager_service_impl.cc", | 24 "view_manager_service_impl.cc", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//mojo/services/public/interfaces/window_manager", | 79 "//mojo/services/public/interfaces/window_manager", |
| 79 "//mojo/shell:test_support", | 80 "//mojo/shell:test_support", |
| 80 "//testing/gtest", | 81 "//testing/gtest", |
| 81 "//ui/gfx/geometry", | 82 "//ui/gfx/geometry", |
| 82 ] | 83 ] |
| 83 | 84 |
| 84 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 85 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 85 deps += [ "//third_party/mesa:osmesa" ] | 86 deps += [ "//third_party/mesa:osmesa" ] |
| 86 } | 87 } |
| 87 } | 88 } |
| OLD | NEW |