| 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 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/common:mojo_bindings", | 56 "//content/common:mojo_bindings", |
| 57 "//content/public/child:child_sources", | 57 "//content/public/child:child_sources", |
| 58 "//content/public/common:common_sources", | 58 "//content/public/common:common_sources", |
| 59 "//gpu:gpu", | 59 "//gpu:gpu", |
| 60 "//gpu/ipc/common:command_buffer_traits", | 60 "//gpu/ipc/common:command_buffer_traits", |
| 61 "//gpu/ipc/service", | 61 "//gpu/ipc/service", |
| 62 "//ipc", | 62 "//ipc", |
| 63 "//media/gpu", | 63 "//media/gpu", |
| 64 "//media/mojo:features", |
| 64 | 65 |
| 65 # TODO(jrummell): As //media/gpu/ipc/service is a source_set in a | 66 # TODO(jrummell): As //media/gpu/ipc/service is a source_set in a |
| 66 # component build, determine if it should not be included here. | 67 # component build, determine if it should not be included here. |
| 67 # http://crbug.com/702833. | 68 # http://crbug.com/702833. |
| 68 "//media/gpu/ipc/service", | 69 "//media/gpu/ipc/service", |
| 69 "//media/mojo/clients:clients", | 70 "//media/mojo/clients:clients", |
| 70 "//services/service_manager/public/cpp", | 71 "//services/service_manager/public/cpp", |
| 71 "//services/service_manager/public/interfaces", | 72 "//services/service_manager/public/interfaces", |
| 72 "//services/shape_detection:lib", | 73 "//services/shape_detection:lib", |
| 73 "//services/shape_detection/public/interfaces", | 74 "//services/shape_detection/public/interfaces", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 111 } |
| 111 | 112 |
| 112 if (use_ozone) { | 113 if (use_ozone) { |
| 113 deps += [ "//ui/ozone" ] | 114 deps += [ "//ui/ozone" ] |
| 114 } | 115 } |
| 115 | 116 |
| 116 if (enable_vulkan) { | 117 if (enable_vulkan) { |
| 117 deps += [ "//gpu/vulkan" ] | 118 deps += [ "//gpu/vulkan" ] |
| 118 } | 119 } |
| 119 } | 120 } |
| OLD | NEW |