| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 # component build, determine if it should not be included here. | 65 # component build, determine if it should not be included here. |
| 66 # http://crbug.com/702833. | 66 # http://crbug.com/702833. |
| 67 "//media/gpu/ipc/service", | 67 "//media/gpu/ipc/service", |
| 68 "//services/service_manager/public/cpp", | 68 "//services/service_manager/public/cpp", |
| 69 "//services/service_manager/public/interfaces", | 69 "//services/service_manager/public/interfaces", |
| 70 "//services/shape_detection:lib", | 70 "//services/shape_detection:lib", |
| 71 "//services/shape_detection/public/interfaces", | 71 "//services/shape_detection/public/interfaces", |
| 72 "//services/ui/gpu", | 72 "//services/ui/gpu", |
| 73 "//services/ui/gpu/interfaces", | 73 "//services/ui/gpu/interfaces", |
| 74 "//skia", | 74 "//skia", |
| 75 "//ui/events/ipc", | |
| 76 "//ui/gfx/ipc", | 75 "//ui/gfx/ipc", |
| 77 "//ui/gl", | 76 "//ui/gl", |
| 78 "//ui/gl/init", | 77 "//ui/gl/init", |
| 78 "//ui/latency/ipc", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 if (is_android) { | 81 if (is_android) { |
| 82 deps += [ "//media" ] | 82 deps += [ "//media" ] |
| 83 } | 83 } |
| 84 | 84 |
| 85 if (mojo_media_host == "gpu") { | 85 if (mojo_media_host == "gpu") { |
| 86 deps += [ "//media/mojo/services" ] | 86 deps += [ "//media/mojo/services" ] |
| 87 } | 87 } |
| 88 | 88 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 108 } | 108 } |
| 109 | 109 |
| 110 if (use_ozone) { | 110 if (use_ozone) { |
| 111 deps += [ "//ui/ozone" ] | 111 deps += [ "//ui/ozone" ] |
| 112 } | 112 } |
| 113 | 113 |
| 114 if (enable_vulkan) { | 114 if (enable_vulkan) { |
| 115 deps += [ "//gpu/vulkan" ] | 115 deps += [ "//gpu/vulkan" ] |
| 116 } | 116 } |
| 117 } | 117 } |
| OLD | NEW |