| 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/service_manager/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 "accelerator_transport_util.cc", |
| 12 "accelerator_transport_util.h", |
| 11 "event_matcher_util.cc", | 13 "event_matcher_util.cc", |
| 12 "event_matcher_util.h", | 14 "event_matcher_util.h", |
| 13 "generic_shared_memory_id_generator.cc", | 15 "generic_shared_memory_id_generator.cc", |
| 14 "generic_shared_memory_id_generator.h", | 16 "generic_shared_memory_id_generator.h", |
| 15 "switches.cc", | 17 "switches.cc", |
| 16 "switches.h", | 18 "switches.h", |
| 17 "transient_window_utils.h", | 19 "transient_window_utils.h", |
| 18 "types.h", | 20 "types.h", |
| 19 "util.h", | 21 "util.h", |
| 20 ] | 22 ] |
| (...skipping 27 matching lines...) Expand all Loading... |
| 48 deps = [ | 50 deps = [ |
| 49 "//base/test:test_support", | 51 "//base/test:test_support", |
| 50 "//mojo/edk/system", | 52 "//mojo/edk/system", |
| 51 "//services/service_manager/background:main", | 53 "//services/service_manager/background:main", |
| 52 ] | 54 ] |
| 53 | 55 |
| 54 if (use_ozone) { | 56 if (use_ozone) { |
| 55 deps += [ "//ui/ozone" ] | 57 deps += [ "//ui/ozone" ] |
| 56 } | 58 } |
| 57 } | 59 } |
| OLD | NEW |