| 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_manifest.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 | 8 |
| 9 source_set("gpu") { | 9 source_set("gpu") { |
| 10 output_name = "mus_gpu" | 10 output_name = "mus_gpu" |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "gpu_service_mus.cc", | 13 "gpu_service_mus.cc", |
| 14 "gpu_service_mus.h", | 14 "gpu_service_mus.h", |
| 15 "gpu_type_converters.cc", | 15 "gpu_type_converters.cc", |
| 16 "gpu_type_converters.h", | 16 "gpu_type_converters.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//components/mus/public/interfaces", | 20 "//components/mus/public/interfaces", |
| 21 "//gpu/ipc/common", | 21 "//gpu/ipc/common", |
| 22 "//gpu/ipc/service", | 22 "//gpu/ipc/service", |
| 23 "//ipc", | 23 "//ipc", |
| 24 "//mojo/platform_handle:platform_handle", | 24 "//mojo/public/cpp/system", |
| 25 "//ui/gfx:memory_buffer", | 25 "//ui/gfx:memory_buffer", |
| 26 ] | 26 ] |
| 27 } | 27 } |
| 28 | 28 |
| 29 group("tests") { | 29 group("tests") { |
| 30 testonly = true | 30 testonly = true |
| 31 deps = [ | 31 deps = [ |
| 32 ":mus_gpu_unittests", | 32 ":mus_gpu_unittests", |
| 33 ] | 33 ] |
| 34 } | 34 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 58 | 58 |
| 59 if (use_ozone) { | 59 if (use_ozone) { |
| 60 deps += [ "//ui/ozone" ] | 60 deps += [ "//ui/ozone" ] |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| 64 mojo_application_manifest("mus_gpu_unittests_app_manifest") { | 64 mojo_application_manifest("mus_gpu_unittests_app_manifest") { |
| 65 application_name = "mus_gpu_unittests_app" | 65 application_name = "mus_gpu_unittests_app" |
| 66 source = "mus_gpu_unittests_app_manifest.json" | 66 source = "mus_gpu_unittests_app_manifest.json" |
| 67 } | 67 } |
| OLD | NEW |