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/shell/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 "gpu_type_converters.cc", | |
16 "gpu_type_converters.h", | |
17 "switches.cc", | 15 "switches.cc", |
18 "switches.h", | 16 "switches.h", |
19 "transient_window_utils.h", | 17 "transient_window_utils.h", |
20 "types.h", | 18 "types.h", |
21 "util.h", | 19 "util.h", |
22 ] | 20 ] |
23 | 21 |
24 deps = [ | 22 deps = [ |
25 "//gpu/command_buffer/client", | 23 "//gpu/command_buffer/client", |
26 "//gpu/config", | 24 "//gpu/config", |
(...skipping 25 matching lines...) Expand all Loading... | |
52 "//mojo/edk/system", | 50 "//mojo/edk/system", |
53 "//services/shell/background:main", | 51 "//services/shell/background:main", |
54 ] | 52 ] |
55 | 53 |
56 if (use_ozone) { | 54 if (use_ozone) { |
57 deps += [ "//ui/ozone" ] | 55 deps += [ "//ui/ozone" ] |
58 } | 56 } |
59 } | 57 } |
60 | 58 |
61 test("mus_common_unittests") { | 59 test("mus_common_unittests") { |
62 sources = [ | 60 sources = [] |
rjkroege
2016/08/31 19:54:14
so there's no test? this looks weird. What actuall
| |
63 "gpu_type_converters_unittest.cc", | |
64 ] | |
65 public_deps = [ | 61 public_deps = [ |
66 ":mus_common", | 62 ":mus_common", |
67 ] | 63 ] |
68 deps = [ | 64 deps = [ |
69 ":run_all_shelltests", | 65 ":run_all_shelltests", |
70 "//base", | 66 "//base", |
71 "//base/test:test_config", | 67 "//base/test:test_config", |
72 "//ipc:ipc", | 68 "//ipc:ipc", |
73 "//services/ui/public/interfaces", | 69 "//services/ui/public/interfaces", |
74 "//testing/gtest", | 70 "//testing/gtest", |
75 "//ui/gfx:test_support", | 71 "//ui/gfx:test_support", |
76 "//ui/gfx/ipc", | 72 "//ui/gfx/ipc", |
77 ] | 73 ] |
78 } | 74 } |
79 | 75 |
80 service_manifest("mus_common_unittests_app_manifest") { | 76 service_manifest("mus_common_unittests_app_manifest") { |
81 name = "mus_common_unittests_app" | 77 name = "mus_common_unittests_app" |
82 source = "mus_common_unittests_app_manifest.json" | 78 source = "mus_common_unittests_app_manifest.json" |
83 } | 79 } |
OLD | NEW |