| 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("//content/content.gni") | 6 import("//content/content.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 configs += [ "//content:content_implementation" ] | 46 configs += [ "//content:content_implementation" ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 "//base", | 49 "//base", |
| 50 "//content:export", | 50 "//content:export", |
| 51 "//content/public/child:child_sources", | 51 "//content/public/child:child_sources", |
| 52 "//content/public/common:common_sources", | 52 "//content/public/common:common_sources", |
| 53 "//gpu:gpu", | 53 "//gpu:gpu", |
| 54 "//gpu/ipc/common", | 54 "//gpu/ipc/common:command_buffer_traits", |
| 55 "//ipc", | 55 "//ipc", |
| 56 "//mojo/shell/public/interfaces", | 56 "//mojo/shell/public/interfaces", |
| 57 "//skia", | 57 "//skia", |
| 58 "//ui/gl", | 58 "//ui/gl", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 public_deps = [ | 61 public_deps = [ |
| 62 "//content/common:mojo_bindings", | 62 "//content/common:mojo_bindings", |
| 63 ] | 63 ] |
| 64 | 64 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 83 } | 83 } |
| 84 | 84 |
| 85 if (use_x11) { | 85 if (use_x11) { |
| 86 deps += [ "//ui/events/platform/x11" ] | 86 deps += [ "//ui/events/platform/x11" ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 if (enable_vulkan) { | 89 if (enable_vulkan) { |
| 90 deps += [ "//gpu/vulkan" ] | 90 deps += [ "//gpu/vulkan" ] |
| 91 } | 91 } |
| 92 } | 92 } |
| OLD | NEW |