| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "//cc/surfaces:surface_id", | 113 "//cc/surfaces:surface_id", |
| 114 "//components/view_manager/public/cpp:common", | 114 "//components/view_manager/public/cpp:common", |
| 115 "//components/view_manager/public/interfaces", | 115 "//components/view_manager/public/interfaces", |
| 116 "//components/view_manager/native_viewport", | 116 "//components/view_manager/native_viewport", |
| 117 "//mojo/application/public/cpp", | 117 "//mojo/application/public/cpp", |
| 118 "//mojo/common:tracing_impl", | 118 "//mojo/common:tracing_impl", |
| 119 "//mojo/converters/geometry", | 119 "//mojo/converters/geometry", |
| 120 "//mojo/converters/input_events", | 120 "//mojo/converters/input_events", |
| 121 "//mojo/converters/surfaces", | 121 "//mojo/converters/surfaces", |
| 122 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 122 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 123 "//ui/mojo/geometry:interfaces", | 123 "//ui/events", |
| 124 "//ui/mojo/events:interfaces", | 124 "//ui/events/platform", |
| 125 "//ui/gfx", | 125 "//ui/gfx", |
| 126 "//ui/gfx/geometry", | 126 "//ui/gfx/geometry", |
| 127 "//ui/mojo/events:interfaces", |
| 128 "//ui/mojo/geometry:interfaces", |
| 129 "//ui/platform_window:platform_impls", |
| 127 ] | 130 ] |
| 128 } | 131 } |
| 129 | 132 |
| 130 source_set("test_support") { | 133 source_set("test_support") { |
| 131 testonly = true | 134 testonly = true |
| 132 | 135 |
| 133 sources = [ | 136 sources = [ |
| 134 "test_change_tracker.cc", | 137 "test_change_tracker.cc", |
| 135 "test_change_tracker.h", | 138 "test_change_tracker.h", |
| 136 ] | 139 ] |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "//components/view_manager/public/cpp", | 214 "//components/view_manager/public/cpp", |
| 212 "//components/view_manager/public/cpp/tests:test_support", | 215 "//components/view_manager/public/cpp/tests:test_support", |
| 213 "//components/view_manager/public/interfaces", | 216 "//components/view_manager/public/interfaces", |
| 214 "//mojo/application/public/cpp:test_support", | 217 "//mojo/application/public/cpp:test_support", |
| 215 "//ui/mojo/geometry:interfaces", | 218 "//ui/mojo/geometry:interfaces", |
| 216 "//ui/mojo/geometry:util", | 219 "//ui/mojo/geometry:util", |
| 217 ] | 220 ] |
| 218 | 221 |
| 219 data_deps = [ ":view_manager" ] | 222 data_deps = [ ":view_manager" ] |
| 220 } | 223 } |
| OLD | NEW |