| 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_util.cc", | 11 "accelerator_util.cc", |
| 12 "accelerator_util.h", | 12 "accelerator_util.h", |
| 13 "image_cursors_set.cc", |
| 14 "image_cursors_set.h", |
| 13 "switches.cc", | 15 "switches.cc", |
| 14 "switches.h", | 16 "switches.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 deps = [ | 22 deps = [ |
| 21 "//gpu/command_buffer/client", | 23 "//gpu/command_buffer/client", |
| 22 "//gpu/config", | 24 "//gpu/config", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 43 "task_runner_test_base.cc", | 45 "task_runner_test_base.cc", |
| 44 "task_runner_test_base.h", | 46 "task_runner_test_base.h", |
| 45 ] | 47 ] |
| 46 | 48 |
| 47 deps = [ | 49 deps = [ |
| 48 "//base", | 50 "//base", |
| 49 "//base/test:test_support", | 51 "//base/test:test_support", |
| 50 "//testing/gtest", | 52 "//testing/gtest", |
| 51 ] | 53 ] |
| 52 } | 54 } |
| OLD | NEW |