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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("mus_common") { | 7 component("mus_common") { |
8 sources = [ | 8 sources = [ |
9 "args.cc", | 9 "args.cc", |
10 "args.h", | 10 "args.h", |
| 11 "event_matcher_util.cc", |
| 12 "event_matcher_util.h", |
11 "event_param_traits.cc", | 13 "event_param_traits.cc", |
12 "event_param_traits.h", | 14 "event_param_traits.h", |
13 "event_param_traits_macros.h", | 15 "event_param_traits_macros.h", |
14 "mus_common_export.h", | 16 "mus_common_export.h", |
15 "transient_window_utils.h", | 17 "transient_window_utils.h", |
16 "types.h", | 18 "types.h", |
17 "util.h", | 19 "util.h", |
18 ] | 20 ] |
19 | 21 |
20 defines = [ "MUS_IPC_IMPLEMENTATION" ] | 22 defines = [ "MUS_IPC_IMPLEMENTATION" ] |
(...skipping 24 matching lines...) Expand all Loading... |
45 "//base/test:run_all_unittests", | 47 "//base/test:run_all_unittests", |
46 "//base/test:test_config", | 48 "//base/test:test_config", |
47 "//ipc:ipc", | 49 "//ipc:ipc", |
48 "//mojo/edk/test:test_support", | 50 "//mojo/edk/test:test_support", |
49 "//testing/gtest", | 51 "//testing/gtest", |
50 "//ui/events:events", | 52 "//ui/events:events", |
51 "//ui/gfx:test_support", | 53 "//ui/gfx:test_support", |
52 "//ui/gfx/ipc", | 54 "//ui/gfx/ipc", |
53 ] | 55 ] |
54 } | 56 } |
OLD | NEW |