| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "aura_init.h", | 21 "aura_init.h", |
| 22 "clipboard_mus.cc", | 22 "clipboard_mus.cc", |
| 23 "clipboard_mus.h", | 23 "clipboard_mus.h", |
| 24 "display_list.cc", | 24 "display_list.cc", |
| 25 "display_list.h", | 25 "display_list.h", |
| 26 "input_method_mus.cc", | 26 "input_method_mus.cc", |
| 27 "input_method_mus.h", | 27 "input_method_mus.h", |
| 28 "mus_export.h", | 28 "mus_export.h", |
| 29 "native_widget_mus.cc", | 29 "native_widget_mus.cc", |
| 30 "native_widget_mus.h", | 30 "native_widget_mus.h", |
| 31 "os_exchange_data_provider_mus.cc", |
| 32 "os_exchange_data_provider_mus.h", |
| 31 "screen_mus.cc", | 33 "screen_mus.cc", |
| 32 "screen_mus.h", | 34 "screen_mus.h", |
| 33 "screen_mus_delegate.h", | 35 "screen_mus_delegate.h", |
| 34 "surface_binding.cc", | 36 "surface_binding.cc", |
| 35 "surface_binding.h", | 37 "surface_binding.h", |
| 36 "surface_context_factory.cc", | 38 "surface_context_factory.cc", |
| 37 "surface_context_factory.h", | 39 "surface_context_factory.h", |
| 38 "window_manager_connection.cc", | 40 "window_manager_connection.cc", |
| 39 "window_manager_connection.h", | 41 "window_manager_connection.h", |
| 40 "window_manager_constants_converters.cc", | 42 "window_manager_constants_converters.cc", |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 type = "exe" | 301 type = "exe" |
| 300 name = "views_mus_unittests" | 302 name = "views_mus_unittests" |
| 301 source = "unittests_manifest.json" | 303 source = "unittests_manifest.json" |
| 302 } | 304 } |
| 303 | 305 |
| 304 service_manifest("interactive_ui_tests_manifest") { | 306 service_manifest("interactive_ui_tests_manifest") { |
| 305 type = "exe" | 307 type = "exe" |
| 306 name = "views_mus_interactive_ui_tests" | 308 name = "views_mus_interactive_ui_tests" |
| 307 source = "interactive_ui_tests_manifest.json" | 309 source = "interactive_ui_tests_manifest.json" |
| 308 } | 310 } |
| OLD | NEW |