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_main.cc", |
| 14 "gpu_main.h", |
13 "gpu_service_internal.cc", | 15 "gpu_service_internal.cc", |
14 "gpu_service_internal.h", | 16 "gpu_service_internal.h", |
15 ] | 17 ] |
16 | 18 |
17 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 19 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
18 | 20 |
19 deps = [ | 21 deps = [ |
20 "//gpu/ipc/common", | 22 "//gpu/ipc/common", |
21 "//gpu/ipc/service", | 23 "//gpu/ipc/service", |
22 "//ipc", | 24 "//ipc", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 57 |
56 data_deps = [ | 58 data_deps = [ |
57 ":mus_gpu_unittests_app_manifest", | 59 ":mus_gpu_unittests_app_manifest", |
58 ] | 60 ] |
59 } | 61 } |
60 | 62 |
61 service_manifest("mus_gpu_unittests_app_manifest") { | 63 service_manifest("mus_gpu_unittests_app_manifest") { |
62 name = "mus_gpu_unittests_app" | 64 name = "mus_gpu_unittests_app" |
63 source = "mus_gpu_unittests_app_manifest.json" | 65 source = "mus_gpu_unittests_app_manifest.json" |
64 } | 66 } |
OLD | NEW |