| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "//content/child", | 54 "//content/child", |
| 55 "//content/common", | 55 "//content/common", |
| 56 "//content/public/child:child_sources", | 56 "//content/public/child:child_sources", |
| 57 "//content/public/common:common_sources", | 57 "//content/public/common:common_sources", |
| 58 "//gpu:gpu", | 58 "//gpu:gpu", |
| 59 "//gpu/ipc/common:command_buffer_traits", | 59 "//gpu/ipc/common:command_buffer_traits", |
| 60 "//gpu/ipc/service", | 60 "//gpu/ipc/service", |
| 61 "//ipc", | 61 "//ipc", |
| 62 "//media/gpu", | 62 "//media/gpu", |
| 63 "//media/gpu/ipc/service", | 63 "//media/gpu/ipc/service", |
| 64 "//services/shell/public/cpp", | 64 "//services/service_manager/public/cpp", |
| 65 "//services/shell/public/interfaces", | 65 "//services/service_manager/public/interfaces", |
| 66 "//skia", | 66 "//skia", |
| 67 "//ui/events/ipc", | 67 "//ui/events/ipc", |
| 68 "//ui/gfx/ipc", | 68 "//ui/gfx/ipc", |
| 69 "//ui/gl", | 69 "//ui/gl", |
| 70 "//ui/gl/init", | 70 "//ui/gl/init", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 if (is_android) { | 73 if (is_android) { |
| 74 deps += [ "//media/base/android" ] | 74 deps += [ "//media/base/android" ] |
| 75 } | 75 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 104 | 104 |
| 105 if (ozone_platform_x11) { | 105 if (ozone_platform_x11) { |
| 106 defines = [ "OZONE_X11" ] | 106 defines = [ "OZONE_X11" ] |
| 107 } | 107 } |
| 108 } | 108 } |
| 109 | 109 |
| 110 if (enable_vulkan) { | 110 if (enable_vulkan) { |
| 111 deps += [ "//gpu/vulkan" ] | 111 deps += [ "//gpu/vulkan" ] |
| 112 } | 112 } |
| 113 } | 113 } |
| OLD | NEW |