| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//services/shell/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("mus_common") { | 9 source_set("mus_common") { |
| 10 sources = [ | 10 sources = [ |
| 11 "event_matcher_util.cc", | 11 "event_matcher_util.cc", |
| 12 "event_matcher_util.h", | 12 "event_matcher_util.h", |
| 13 "generic_shared_memory_id_generator.cc", | 13 "generic_shared_memory_id_generator.cc", |
| 14 "generic_shared_memory_id_generator.h", | 14 "generic_shared_memory_id_generator.h", |
| 15 "switches.cc", | 15 "switches.cc", |
| 16 "switches.h", | 16 "switches.h", |
| 17 "transient_window_utils.h", | 17 "transient_window_utils.h", |
| 18 "types.h", | 18 "types.h", |
| 19 "util.h", | 19 "util.h", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 "//gpu/command_buffer/client", | 23 "//gpu/command_buffer/client", |
| 24 "//gpu/config", | 24 "//gpu/config", |
| 25 "//gpu/ipc/client", | 25 "//gpu/ipc/client", |
| 26 "//gpu/ipc/common:command_buffer_traits", | 26 "//gpu/ipc/common:command_buffer_traits", |
| 27 "//ipc:ipc", | 27 "//ipc:ipc", |
| 28 "//services/shell/public/cpp", | 28 "//services/service_manager/public/cpp", |
| 29 "//ui/events:events", | 29 "//ui/events:events", |
| 30 "//ui/gfx/ipc/geometry", | 30 "//ui/gfx/ipc/geometry", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 public_deps = [ | 33 public_deps = [ |
| 34 "//mojo/public/cpp/bindings", | 34 "//mojo/public/cpp/bindings", |
| 35 "//mojo/public/cpp/system", | 35 "//mojo/public/cpp/system", |
| 36 "//services/ui/public/interfaces", | 36 "//services/ui/public/interfaces", |
| 37 "//ui/base", | 37 "//ui/base", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 | 40 |
| 41 source_set("run_all_shelltests") { | 41 source_set("run_all_shelltests") { |
| 42 testonly = true | 42 testonly = true |
| 43 | 43 |
| 44 sources = [ | 44 sources = [ |
| 45 "run_all_shelltests.cc", | 45 "run_all_shelltests.cc", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 "//base/test:test_support", | 49 "//base/test:test_support", |
| 50 "//mojo/edk/system", | 50 "//mojo/edk/system", |
| 51 "//services/shell/background:main", | 51 "//services/service_manager/background:main", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 if (use_ozone) { | 54 if (use_ozone) { |
| 55 deps += [ "//ui/ozone" ] | 55 deps += [ "//ui/ozone" ] |
| 56 } | 56 } |
| 57 } | 57 } |
| OLD | NEW |