| 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("//gpu/vulkan/features.gni") | |
| 7 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 8 import("//ui/ozone/ozone.gni") | 7 import("//ui/ozone/ozone.gni") |
| 9 | 8 |
| 10 # See //content/BUILD.gn for how this works. | 9 # See //content/BUILD.gn for how this works. |
| 11 group("gpu") { | 10 group("gpu") { |
| 12 visibility = [ "//content/*" ] # This is an internal content API. | 11 visibility = [ "//content/*" ] # This is an internal content API. |
| 13 | 12 |
| 14 if (is_component_build) { | 13 if (is_component_build) { |
| 15 public_deps = [ | 14 public_deps = [ |
| 16 "//content", | 15 "//content", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 } | 101 } |
| 103 | 102 |
| 104 if (use_ozone) { | 103 if (use_ozone) { |
| 105 deps += [ "//ui/ozone" ] | 104 deps += [ "//ui/ozone" ] |
| 106 } | 105 } |
| 107 | 106 |
| 108 if (enable_vulkan) { | 107 if (enable_vulkan) { |
| 109 deps += [ "//gpu/vulkan" ] | 108 deps += [ "//gpu/vulkan" ] |
| 110 } | 109 } |
| 111 } | 110 } |
| OLD | NEW |