OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
7 | 7 |
8 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
9 group("gpu") { | 9 group("gpu") { |
10 visibility = [ "//content/*" ] # This is an internal content API. | 10 visibility = [ "//content/*" ] # This is an internal content API. |
(...skipping 27 matching lines...) Expand all Loading... |
38 "in_process_gpu_thread.cc", | 38 "in_process_gpu_thread.cc", |
39 "in_process_gpu_thread.h", | 39 "in_process_gpu_thread.h", |
40 ] | 40 ] |
41 | 41 |
42 configs += [ "//content:content_implementation" ] | 42 configs += [ "//content:content_implementation" ] |
43 | 43 |
44 deps = [ | 44 deps = [ |
45 "//base", | 45 "//base", |
46 "//base/third_party/dynamic_annotations", | 46 "//base/third_party/dynamic_annotations", |
47 "//components/tracing", | 47 "//components/tracing", |
48 "//content:export", | |
49 "//content/common", | 48 "//content/common", |
50 "//content/public/child:child_sources", | 49 "//content/public/child:child_sources", |
51 "//content/public/common:common_sources", | 50 "//content/public/common:common_sources", |
52 "//gpu:gpu", | 51 "//content:export", |
53 "//gpu/ipc/common:command_buffer_traits", | 52 "//gpu/ipc/common:command_buffer_traits", |
54 "//gpu/ipc/service", | 53 "//gpu/ipc/service", |
| 54 "//gpu:gpu", |
55 "//ipc", | 55 "//ipc", |
| 56 "//media/gpu/ipc/service", |
56 "//media/mojo/services:application_factory", | 57 "//media/mojo/services:application_factory", |
57 "//services/shell/public/interfaces", | 58 "//services/shell/public/interfaces", |
58 "//skia", | 59 "//skia", |
59 "//ui/gfx/ipc", | 60 "//ui/gfx/ipc", |
60 "//ui/gl", | 61 "//ui/gl", |
61 "//ui/latency_info/ipc", | 62 "//ui/latency_info/ipc", |
62 ] | 63 ] |
63 | 64 |
64 if (mojo_media_host == "gpu") { | 65 if (mojo_media_host == "gpu") { |
65 deps += [ "//media/mojo/services:application_factory" ] | 66 deps += [ "//media/mojo/services:application_factory" ] |
(...skipping 21 matching lines...) Expand all Loading... |
87 } | 88 } |
88 | 89 |
89 if (use_ozone) { | 90 if (use_ozone) { |
90 deps += [ "//ui/ozone" ] | 91 deps += [ "//ui/ozone" ] |
91 } | 92 } |
92 | 93 |
93 if (enable_vulkan) { | 94 if (enable_vulkan) { |
94 deps += [ "//gpu/vulkan" ] | 95 deps += [ "//gpu/vulkan" ] |
95 } | 96 } |
96 } | 97 } |
OLD | NEW |