| 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") | 5 import("//mojo/system.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager | 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager |
| 8 component("view_manager") { | 8 component("view_manager") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//base", | 10 "//base", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "//base/test:test_support", | 65 "//base/test:test_support", |
| 66 "//mojo/application", | 66 "//mojo/application", |
| 67 "//mojo/application_manager", | 67 "//mojo/application_manager", |
| 68 "//mojo/environment:chromium", | 68 "//mojo/environment:chromium", |
| 69 "//mojo/services/public/cpp/input_events", | 69 "//mojo/services/public/cpp/input_events", |
| 70 "//mojo/services/public/cpp/geometry", | 70 "//mojo/services/public/cpp/geometry", |
| 71 "//mojo/services/public/cpp/view_manager", | 71 "//mojo/services/public/cpp/view_manager", |
| 72 "//mojo/services/public/cpp/view_manager/lib:run_unittests", | 72 "//mojo/services/public/cpp/view_manager/lib:run_unittests", |
| 73 "//mojo/services/public/cpp/view_manager:common", | 73 "//mojo/services/public/cpp/view_manager:common", |
| 74 "//mojo/services/public/interfaces/input_events", | 74 "//mojo/services/public/interfaces/input_events", |
| 75 "//mojo/services/public/interfaces/native_viewport", | |
| 76 "//mojo/services/public/interfaces/geometry", | 75 "//mojo/services/public/interfaces/geometry", |
| 77 "//mojo/services/public/interfaces/view_manager", | 76 "//mojo/services/public/interfaces/view_manager", |
| 78 "//mojo/shell:test_support", | 77 "//mojo/shell:test_support", |
| 79 "//mojo/system", | 78 "//mojo/system", |
| 80 "//testing/gtest", | 79 "//testing/gtest", |
| 81 ] | 80 ] |
| 82 | 81 |
| 83 sources = [ | 82 sources = [ |
| 84 "test_change_tracker.cc", | 83 "test_change_tracker.cc", |
| 85 "test_change_tracker.h", | 84 "test_change_tracker.h", |
| 86 "view_manager_unittest.cc", | 85 "view_manager_unittest.cc", |
| 87 ] | 86 ] |
| 88 } | 87 } |
| OLD | NEW |