| 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" |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "gpu_main.cc", | 13 "gpu_main.cc", |
| 14 "gpu_main.h", | 14 "gpu_main.h", |
| 15 "gpu_service_internal.cc", | 15 "gpu_service_internal.cc", |
| 16 "gpu_service_internal.h", | 16 "gpu_service_internal.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 19 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//cc", | 22 "//cc", |
| 23 "//gpu/ipc:command_buffer", | 23 "//gpu/ipc:command_buffer", |
| 24 "//gpu/ipc/common", | 24 "//gpu/ipc/common", |
| 25 "//gpu/ipc/service", | 25 "//gpu/ipc/service", |
| 26 "//ipc", | 26 "//ipc", |
| 27 "//media/gpu/ipc/service", | 27 "//media/gpu/ipc/service", |
| 28 "//mojo/public/cpp/system", | 28 "//mojo/public/cpp/system", |
| 29 "//services/service_manager/public/cpp", | 29 "//services/service_manager/public/cpp", |
| 30 "//services/ui/common:mus_common", | 30 "//services/ui/common:server_gpu", |
| 31 "//services/ui/gpu/interfaces", | 31 "//services/ui/gpu/interfaces", |
| 32 "//services/ui/public/interfaces", | 32 "//services/ui/public/interfaces", |
| 33 "//services/ui/surfaces", | 33 "//services/ui/surfaces", |
| 34 "//ui/gfx:memory_buffer", | 34 "//ui/gfx:memory_buffer", |
| 35 "//ui/gl/init", | 35 "//ui/gl/init", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 if (use_ozone) { | 38 if (use_ozone) { |
| 39 deps += [ "//ui/ozone:ozone" ] | 39 deps += [ "//ui/ozone:ozone" ] |
| 40 } | 40 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 60 | 60 |
| 61 data_deps = [ | 61 data_deps = [ |
| 62 ":mus_gpu_unittests_app_manifest", | 62 ":mus_gpu_unittests_app_manifest", |
| 63 ] | 63 ] |
| 64 } | 64 } |
| 65 | 65 |
| 66 service_manifest("mus_gpu_unittests_app_manifest") { | 66 service_manifest("mus_gpu_unittests_app_manifest") { |
| 67 name = "mus_gpu_unittests_app" | 67 name = "mus_gpu_unittests_app" |
| 68 source = "mus_gpu_unittests_app_manifest.json" | 68 source = "mus_gpu_unittests_app_manifest.json" |
| 69 } | 69 } |
| OLD | NEW |