Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: services/ui/gpu/BUILD.gn

Issue 2939953004: viz: Move some code into //components/viz/common. (Closed)
Patch Set: . Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « services/ui/common/server_gpu_memory_buffer_manager.cc ('k') | services/ui/gpu/gpu_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/catalog/public/tools/catalog.gni") 6 import("//services/catalog/public/tools/catalog.gni")
7 import("//services/service_manager/public/service_manifest.gni") 7 import("//services/service_manager/public/service_manifest.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 source_set("gpu") { 10 source_set("gpu") {
11 output_name = "mus_gpu" 11 output_name = "mus_gpu"
12 12
13 sources = [ 13 sources = [
14 "gpu_main.cc", 14 "gpu_main.cc",
15 "gpu_main.h", 15 "gpu_main.h",
16 "gpu_service.cc", 16 "gpu_service.cc",
17 "gpu_service.h", 17 "gpu_service.h",
18 ] 18 ]
19 19
20 defines = [ "NOTIMPLEMENTED_POLICY=5" ] 20 defines = [ "NOTIMPLEMENTED_POLICY=5" ]
21 21
22 deps = [ 22 deps = [
23 "//cc", 23 "//cc",
24 "//components/viz/common",
24 "//components/viz/service", 25 "//components/viz/service",
25 "//gpu/ipc:command_buffer", 26 "//gpu/ipc:command_buffer",
26 "//gpu/ipc/common", 27 "//gpu/ipc/common",
27 "//gpu/ipc/service", 28 "//gpu/ipc/service",
28 "//ipc", 29 "//ipc",
29 "//media/gpu/ipc/service", 30 "//media/gpu/ipc/service",
30 "//mojo/public/cpp/system", 31 "//mojo/public/cpp/system",
31 "//services/service_manager/public/cpp", 32 "//services/service_manager/public/cpp",
32 "//services/ui/common:server_gpu",
33 "//services/ui/gpu/interfaces", 33 "//services/ui/gpu/interfaces",
34 "//services/ui/public/interfaces", 34 "//services/ui/public/interfaces",
35 "//ui/gfx:memory_buffer", 35 "//ui/gfx:memory_buffer",
36 "//ui/gl/init", 36 "//ui/gl/init",
37 ] 37 ]
38 38
39 if (use_ozone) { 39 if (use_ozone) {
40 deps += [ "//ui/ozone:ozone" ] 40 deps += [ "//ui/ozone:ozone" ]
41 } 41 }
42 } 42 }
(...skipping 25 matching lines...) Expand all
68 service_manifest("unittest_manifest") { 68 service_manifest("unittest_manifest") {
69 name = "mus_gpu_unittests" 69 name = "mus_gpu_unittests"
70 source = "test_manifest.json" 70 source = "test_manifest.json"
71 } 71 }
72 72
73 catalog("tests_catalog") { 73 catalog("tests_catalog") {
74 testonly = true 74 testonly = true
75 embedded_services = [ ":unittest_manifest" ] 75 embedded_services = [ ":unittest_manifest" ]
76 } 76 }
77 } 77 }
OLDNEW
« no previous file with comments | « services/ui/common/server_gpu_memory_buffer_manager.cc ('k') | services/ui/gpu/gpu_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698