| 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") | 6 import("//gpu/vulkan/features.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//ui/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
| 9 | 9 |
| 10 # See //content/BUILD.gn for how this works. | 10 # See //content/BUILD.gn for how this works. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 configs += [ "//content:content_implementation" ] | 47 configs += [ "//content:content_implementation" ] |
| 48 | 48 |
| 49 deps = [ | 49 deps = [ |
| 50 "//base", | 50 "//base", |
| 51 "//base/third_party/dynamic_annotations", | 51 "//base/third_party/dynamic_annotations", |
| 52 "//components/tracing", | 52 "//components/tracing", |
| 53 "//content:export", | 53 "//content:export", |
| 54 "//content/child", | 54 "//content/child", |
| 55 "//content/common", | 55 "//content/common", |
| 56 "//content/common:mojo_bindings", |
| 56 "//content/public/child:child_sources", | 57 "//content/public/child:child_sources", |
| 57 "//content/public/common:common_sources", | 58 "//content/public/common:common_sources", |
| 58 "//gpu:gpu", | 59 "//gpu:gpu", |
| 59 "//gpu/ipc/common:command_buffer_traits", | 60 "//gpu/ipc/common:command_buffer_traits", |
| 60 "//gpu/ipc/service", | 61 "//gpu/ipc/service", |
| 61 "//ipc", | 62 "//ipc", |
| 62 "//media/gpu", | 63 "//media/gpu", |
| 63 | 64 |
| 64 # TODO(jrummell): As //media/gpu/ipc/service is a source_set in a | 65 # TODO(jrummell): As //media/gpu/ipc/service is a source_set in a |
| 65 # component build, determine if it should not be included here. | 66 # component build, determine if it should not be included here. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 109 } |
| 109 | 110 |
| 110 if (use_ozone) { | 111 if (use_ozone) { |
| 111 deps += [ "//ui/ozone" ] | 112 deps += [ "//ui/ozone" ] |
| 112 } | 113 } |
| 113 | 114 |
| 114 if (enable_vulkan) { | 115 if (enable_vulkan) { |
| 115 deps += [ "//gpu/vulkan" ] | 116 deps += [ "//gpu/vulkan" ] |
| 116 } | 117 } |
| 117 } | 118 } |
| OLD | NEW |