| 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" |
| 10 |
| 9 deps = [ | 11 deps = [ |
| 10 "//base", | 12 "//base", |
| 11 "//cc/surfaces", | 13 "//cc/surfaces", |
| 12 "//mojo/application", | 14 "//mojo/application", |
| 13 "//mojo/common", | 15 "//mojo/common", |
| 14 "//mojo/converters/geometry", | 16 "//mojo/converters/geometry", |
| 15 "//mojo/converters/input_events", | 17 "//mojo/converters/input_events", |
| 16 "//mojo/converters/surfaces", | 18 "//mojo/converters/surfaces", |
| 17 "//mojo/environment:chromium", | 19 "//mojo/environment:chromium", |
| 18 "//mojo/public/c/system:for_shared_library", | 20 "//mojo/public/c/system:for_shared_library", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "server_view_delegate.h", | 52 "server_view_delegate.h", |
| 51 "view_manager_export.h", | 53 "view_manager_export.h", |
| 52 "view_manager_service_impl.cc", | 54 "view_manager_service_impl.cc", |
| 53 "view_manager_service_impl.h", | 55 "view_manager_service_impl.h", |
| 54 "window_manager_access_policy.cc", | 56 "window_manager_access_policy.cc", |
| 55 "window_manager_access_policy.h", | 57 "window_manager_access_policy.h", |
| 56 ] | 58 ] |
| 57 } | 59 } |
| 58 | 60 |
| 59 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_unittests | 61 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_unittests |
| 60 test("view_manager_unittests") { | 62 test("mojo_view_manager_unittests") { |
| 61 deps = [ | 63 deps = [ |
| 62 ":view_manager", | 64 ":view_manager", |
| 63 "//base", | 65 "//base", |
| 64 "//base/test:test_support", | 66 "//base/test:test_support", |
| 65 "//mojo/application", | 67 "//mojo/application", |
| 66 "//mojo/application_manager", | 68 "//mojo/application_manager", |
| 67 "//mojo/converters/geometry", | 69 "//mojo/converters/geometry", |
| 68 "//mojo/converters/input_events", | 70 "//mojo/converters/input_events", |
| 69 "//mojo/edk/system", | 71 "//mojo/edk/system", |
| 70 "//mojo/environment:chromium", | 72 "//mojo/environment:chromium", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 94 sources = [ | 96 sources = [ |
| 95 "test_change_tracker.cc", | 97 "test_change_tracker.cc", |
| 96 "test_change_tracker.h", | 98 "test_change_tracker.h", |
| 97 "view_manager_unittest.cc", | 99 "view_manager_unittest.cc", |
| 98 ] | 100 ] |
| 99 | 101 |
| 100 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 102 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 101 deps += [ "//third_party/mesa:osmesa" ] | 103 deps += [ "//third_party/mesa:osmesa" ] |
| 102 } | 104 } |
| 103 } | 105 } |
| OLD | NEW |