| 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 | 7 |
| 8 source_set("gpu") { | 8 source_set("gpu") { |
| 9 output_name = "mus_gpu" | 9 output_name = "mus_gpu" |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "gpu_memory_buffer_manager_mus_local.cc", | |
| 13 "gpu_memory_buffer_manager_mus_local.h", | |
| 14 "gpu_service_impl.cc", | 12 "gpu_service_impl.cc", |
| 15 "gpu_service_impl.h", | 13 "gpu_service_impl.h", |
| 16 "gpu_service_mus.cc", | 14 "gpu_service_mus.cc", |
| 17 "gpu_service_mus.h", | 15 "gpu_service_mus.h", |
| 18 ] | 16 ] |
| 19 | 17 |
| 20 deps = [ | 18 deps = [ |
| 21 "//components/mus/common:mus_common", | 19 "//components/mus/common:mus_common", |
| 22 "//components/mus/public/interfaces", | 20 "//components/mus/public/interfaces", |
| 23 "//gpu/ipc/common", | 21 "//gpu/ipc/common", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 51 | 49 |
| 52 data_deps = [ | 50 data_deps = [ |
| 53 ":mus_gpu_unittests_app_manifest", | 51 ":mus_gpu_unittests_app_manifest", |
| 54 ] | 52 ] |
| 55 } | 53 } |
| 56 | 54 |
| 57 mojo_application_manifest("mus_gpu_unittests_app_manifest") { | 55 mojo_application_manifest("mus_gpu_unittests_app_manifest") { |
| 58 application_name = "mus_gpu_unittests_app" | 56 application_name = "mus_gpu_unittests_app" |
| 59 source = "mus_gpu_unittests_app_manifest.json" | 57 source = "mus_gpu_unittests_app_manifest.json" |
| 60 } | 58 } |
| OLD | NEW |