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 import("//ui/ozone/ozone.gni") | 7 import("//ui/ozone/ozone.gni") |
8 | 8 |
9 # See //content/BUILD.gn for how this works. | 9 # See //content/BUILD.gn for how this works. |
10 group("gpu") { | 10 group("gpu") { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
55 "//content/public/child:child_sources", | 55 "//content/public/child:child_sources", |
56 "//content/public/common:common_sources", | 56 "//content/public/common:common_sources", |
57 "//gpu:gpu", | 57 "//gpu:gpu", |
58 "//gpu/ipc/common:command_buffer_traits", | 58 "//gpu/ipc/common:command_buffer_traits", |
59 "//gpu/ipc/service", | 59 "//gpu/ipc/service", |
60 "//ipc", | 60 "//ipc", |
61 "//media/gpu", | 61 "//media/gpu", |
62 "//media/gpu/ipc/service", | 62 "//media/gpu/ipc/service", |
63 "//services/service_manager/public/cpp", | 63 "//services/service_manager/public/cpp", |
64 "//services/service_manager/public/interfaces", | 64 "//services/service_manager/public/interfaces", |
65 "//services/shape_detection:lib", | |
mcasas
2017/03/10 02:08:53
This is because I need
shape_detection::ShapeDet
Ken Rockot(use gerrit already)
2017/03/10 16:09:12
Nooooo. The lib is the internal implementation det
| |
66 "//services/shape_detection/public/interfaces", | |
65 "//services/ui/gpu", | 67 "//services/ui/gpu", |
66 "//services/ui/gpu/interfaces", | 68 "//services/ui/gpu/interfaces", |
67 "//skia", | 69 "//skia", |
68 "//ui/events/ipc", | 70 "//ui/events/ipc", |
69 "//ui/gfx/ipc", | 71 "//ui/gfx/ipc", |
70 "//ui/gl", | 72 "//ui/gl", |
71 "//ui/gl/init", | 73 "//ui/gl/init", |
72 ] | 74 ] |
73 | 75 |
74 if (is_android) { | 76 if (is_android) { |
(...skipping 26 matching lines...) Expand all Loading... | |
101 } | 103 } |
102 | 104 |
103 if (use_ozone) { | 105 if (use_ozone) { |
104 deps += [ "//ui/ozone" ] | 106 deps += [ "//ui/ozone" ] |
105 } | 107 } |
106 | 108 |
107 if (enable_vulkan) { | 109 if (enable_vulkan) { |
108 deps += [ "//gpu/vulkan" ] | 110 deps += [ "//gpu/vulkan" ] |
109 } | 111 } |
110 } | 112 } |
OLD | NEW |