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("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 component("mus_common") { | 9 component("mus_common") { |
10 sources = [ | 10 sources = [ |
(...skipping 28 matching lines...) Expand all Loading... |
39 "//gpu/config", | 39 "//gpu/config", |
40 "//gpu/ipc/client", | 40 "//gpu/ipc/client", |
41 "//gpu/ipc/common:command_buffer_traits", | 41 "//gpu/ipc/common:command_buffer_traits", |
42 "//ipc:ipc", | 42 "//ipc:ipc", |
43 "//services/shell/public/cpp", | 43 "//services/shell/public/cpp", |
44 "//ui/events:events", | 44 "//ui/events:events", |
45 "//ui/gfx/ipc/geometry", | 45 "//ui/gfx/ipc/geometry", |
46 ] | 46 ] |
47 | 47 |
48 public_deps = [ | 48 public_deps = [ |
49 "//components/mus/public/interfaces", | |
50 "//mojo/public/cpp/bindings", | 49 "//mojo/public/cpp/bindings", |
51 "//mojo/public/cpp/system", | 50 "//mojo/public/cpp/system", |
| 51 "//services/ui/public/interfaces", |
52 "//ui/base", | 52 "//ui/base", |
53 ] | 53 ] |
54 | 54 |
55 if (use_ozone) { | 55 if (use_ozone) { |
56 deps += [ "//ui/ozone" ] | 56 deps += [ "//ui/ozone" ] |
57 } | 57 } |
58 } | 58 } |
59 | 59 |
60 source_set("run_all_shelltests") { | 60 source_set("run_all_shelltests") { |
61 testonly = true | 61 testonly = true |
(...skipping 17 matching lines...) Expand all Loading... |
79 sources = [ | 79 sources = [ |
80 "gpu_type_converters_unittest.cc", | 80 "gpu_type_converters_unittest.cc", |
81 ] | 81 ] |
82 public_deps = [ | 82 public_deps = [ |
83 ":mus_common", | 83 ":mus_common", |
84 ] | 84 ] |
85 deps = [ | 85 deps = [ |
86 ":run_all_shelltests", | 86 ":run_all_shelltests", |
87 "//base", | 87 "//base", |
88 "//base/test:test_config", | 88 "//base/test:test_config", |
89 "//components/mus/public/interfaces", | |
90 "//ipc:ipc", | 89 "//ipc:ipc", |
| 90 "//services/ui/public/interfaces", |
91 "//testing/gtest", | 91 "//testing/gtest", |
92 "//ui/gfx:test_support", | 92 "//ui/gfx:test_support", |
93 "//ui/gfx/ipc", | 93 "//ui/gfx/ipc", |
94 ] | 94 ] |
95 } | 95 } |
96 | 96 |
97 mojo_application_manifest("mus_common_unittests_app_manifest") { | 97 mojo_application_manifest("mus_common_unittests_app_manifest") { |
98 application_name = "mus_common_unittests_app" | 98 application_name = "mus_common_unittests_app" |
99 source = "mus_common_unittests_app_manifest.json" | 99 source = "mus_common_unittests_app_manifest.json" |
100 } | 100 } |
OLD | NEW |