| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("gpu") { | 9 source_set("gpu") { |
| 10 output_name = "mus_gpu" | 10 output_name = "mus_gpu" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 test("mus_gpu_unittests") { | 50 test("mus_gpu_unittests") { |
| 51 deps = [ | 51 deps = [ |
| 52 ":gpu", | 52 ":gpu", |
| 53 "//base", | 53 "//base", |
| 54 "//ipc", | 54 "//ipc", |
| 55 "//services/ui/common:run_all_service_tests", | 55 "//services/ui/common:run_all_service_tests", |
| 56 "//testing/gtest", | 56 "//testing/gtest", |
| 57 "//ui/gfx:memory_buffer", | 57 "//ui/gfx:memory_buffer", |
| 58 "//ui/gfx/geometry", | 58 "//ui/gfx/geometry", |
| 59 ] | 59 ] |
| 60 | |
| 61 data_deps = [ | |
| 62 ":mus_gpu_unittests_app_manifest", | |
| 63 ] | |
| 64 } | 60 } |
| 65 | 61 |
| 66 service_manifest("mus_gpu_unittests_app_manifest") { | 62 service_manifest("mus_gpu_unittests_app_manifest") { |
| 67 name = "mus_gpu_unittests_app" | 63 name = "mus_gpu_unittests_app" |
| 68 source = "mus_gpu_unittests_app_manifest.json" | 64 source = "mus_gpu_unittests_app_manifest.json" |
| 69 } | 65 } |
| OLD | NEW |