| 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") | |
| 6 | |
| 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager | 5 # GYP version: mojo/mojo_services.gypi:mojo_view_manager |
| 8 component("view_manager") { | 6 component("view_manager") { |
| 9 deps = [ | 7 deps = [ |
| 10 "//base", | 8 "//base", |
| 11 "//cc/surfaces", | 9 "//cc/surfaces", |
| 12 "//mojo/application", | 10 "//mojo/application", |
| 13 "//mojo/common", | 11 "//mojo/common", |
| 14 "//mojo/environment:chromium", | 12 "//mojo/environment:chromium", |
| 13 "//mojo/public/c/system:for_component", |
| 15 "//mojo/services/public/cpp/geometry", | 14 "//mojo/services/public/cpp/geometry", |
| 16 "//mojo/services/public/cpp/input_events", | 15 "//mojo/services/public/cpp/input_events", |
| 17 "//mojo/services/public/cpp/surfaces", | 16 "//mojo/services/public/cpp/surfaces", |
| 18 "//mojo/services/public/cpp/view_manager:common", | 17 "//mojo/services/public/cpp/view_manager:common", |
| 19 "//mojo/services/public/interfaces/geometry", | 18 "//mojo/services/public/interfaces/geometry", |
| 20 "//mojo/services/public/interfaces/input_events", | 19 "//mojo/services/public/interfaces/input_events", |
| 21 "//mojo/services/public/interfaces/native_viewport", | 20 "//mojo/services/public/interfaces/native_viewport", |
| 22 "//mojo/services/public/interfaces/surfaces", | 21 "//mojo/services/public/interfaces/surfaces", |
| 23 "//mojo/services/public/interfaces/view_manager", | 22 "//mojo/services/public/interfaces/view_manager", |
| 24 "//ui/base", | 23 "//ui/base", |
| 25 "//ui/events", | 24 "//ui/events", |
| 26 "//ui/events:events_base", | 25 "//ui/events:events_base", |
| 27 "//ui/gfx", | 26 "//ui/gfx", |
| 28 "//ui/gfx/geometry", | 27 "//ui/gfx/geometry", |
| 29 ] + mojo_system_for_component | 28 ] |
| 30 | 29 |
| 31 defines = [ | 30 defines = [ |
| 32 "MOJO_VIEW_MANAGER_IMPLEMENTATION", | 31 "MOJO_VIEW_MANAGER_IMPLEMENTATION", |
| 33 ] | 32 ] |
| 34 | 33 |
| 35 sources = [ | 34 sources = [ |
| 36 "access_policy.h", | 35 "access_policy.h", |
| 37 "access_policy_delegate.h", | 36 "access_policy_delegate.h", |
| 38 "connection_manager.cc", | 37 "connection_manager.cc", |
| 39 "connection_manager.h", | 38 "connection_manager.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//mojo/system", | 77 "//mojo/system", |
| 79 "//testing/gtest", | 78 "//testing/gtest", |
| 80 ] | 79 ] |
| 81 | 80 |
| 82 sources = [ | 81 sources = [ |
| 83 "test_change_tracker.cc", | 82 "test_change_tracker.cc", |
| 84 "test_change_tracker.h", | 83 "test_change_tracker.h", |
| 85 "view_manager_unittest.cc", | 84 "view_manager_unittest.cc", |
| 86 ] | 85 ] |
| 87 } | 86 } |
| OLD | NEW |