| 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", | |
| 10 "args.h", | |
| 11 "event_matcher_util.cc", | 9 "event_matcher_util.cc", |
| 12 "event_matcher_util.h", | 10 "event_matcher_util.h", |
| 13 "event_param_traits.cc", | 11 "event_param_traits.cc", |
| 14 "event_param_traits.h", | 12 "event_param_traits.h", |
| 15 "event_param_traits_macros.h", | 13 "event_param_traits_macros.h", |
| 16 "mus_common_export.h", | 14 "mus_common_export.h", |
| 15 "switches.cc", |
| 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 defines = [ "MUS_IPC_IMPLEMENTATION" ] | 22 defines = [ "MUS_IPC_IMPLEMENTATION" ] |
| 23 | 23 |
| 24 deps = [ | 24 deps = [ |
| 25 "//components/mus/public/interfaces", | 25 "//components/mus/public/interfaces", |
| 26 "//gpu/ipc/common:command_buffer_traits", | 26 "//gpu/ipc/common:command_buffer_traits", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 47 "//base/test:run_all_unittests", | 47 "//base/test:run_all_unittests", |
| 48 "//base/test:test_config", | 48 "//base/test:test_config", |
| 49 "//ipc:ipc", | 49 "//ipc:ipc", |
| 50 "//mojo/edk/test:test_support", | 50 "//mojo/edk/test:test_support", |
| 51 "//testing/gtest", | 51 "//testing/gtest", |
| 52 "//ui/events:events", | 52 "//ui/events:events", |
| 53 "//ui/gfx:test_support", | 53 "//ui/gfx:test_support", |
| 54 "//ui/gfx/ipc", | 54 "//ui/gfx/ipc", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| OLD | NEW |