| 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/shell/public/service_manifest.gni") | 6 import("//services/shell/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" |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "gpu_service_internal.cc", | 13 "gpu_service_internal.cc", |
| 14 "gpu_service_internal.h", | 14 "gpu_service_internal.h", |
| 15 "mus_gpu_memory_buffer_manager.cc", | 15 "mus_gpu_memory_buffer_manager.cc", |
| 16 "mus_gpu_memory_buffer_manager.h", | 16 "mus_gpu_memory_buffer_manager.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//gpu/ipc/common", | 20 "//gpu/ipc/common", |
| 21 "//gpu/ipc/service", | 21 "//gpu/ipc/service", |
| 22 "//ipc", | 22 "//ipc", |
| 23 "//media/gpu/ipc/service", | 23 "//media/gpu/ipc/service", |
| 24 "//mojo/public/cpp/system", | 24 "//mojo/public/cpp/system", |
| 25 "//services/shell/public/cpp", | 25 "//services/shell/public/cpp", |
| 26 "//services/ui/common:mus_common", | 26 "//services/ui/common:mus_common", |
| 27 "//services/ui/gpu/interfaces", |
| 27 "//services/ui/public/interfaces", | 28 "//services/ui/public/interfaces", |
| 28 "//ui/gfx:memory_buffer", | 29 "//ui/gfx:memory_buffer", |
| 29 "//ui/gl/init", | 30 "//ui/gl/init", |
| 30 ] | 31 ] |
| 31 | 32 |
| 32 if (use_ozone) { | 33 if (use_ozone) { |
| 33 deps += [ "//ui/ozone:ozone" ] | 34 deps += [ "//ui/ozone:ozone" ] |
| 34 } | 35 } |
| 35 } | 36 } |
| 36 | 37 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 54 | 55 |
| 55 data_deps = [ | 56 data_deps = [ |
| 56 ":mus_gpu_unittests_app_manifest", | 57 ":mus_gpu_unittests_app_manifest", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 | 60 |
| 60 service_manifest("mus_gpu_unittests_app_manifest") { | 61 service_manifest("mus_gpu_unittests_app_manifest") { |
| 61 name = "mus_gpu_unittests_app" | 62 name = "mus_gpu_unittests_app" |
| 62 source = "mus_gpu_unittests_app_manifest.json" | 63 source = "mus_gpu_unittests_app_manifest.json" |
| 63 } | 64 } |
| OLD | NEW |