| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "//content/public/child:child_sources", | 56 "//content/public/child:child_sources", |
| 57 "//content/public/common:common_sources", | 57 "//content/public/common:common_sources", |
| 58 "//gpu:gpu", | 58 "//gpu:gpu", |
| 59 "//gpu/ipc/common:command_buffer_traits", | 59 "//gpu/ipc/common:command_buffer_traits", |
| 60 "//gpu/ipc/service", | 60 "//gpu/ipc/service", |
| 61 "//ipc", | 61 "//ipc", |
| 62 "//media/gpu", | 62 "//media/gpu", |
| 63 "//media/gpu/ipc/service", | 63 "//media/gpu/ipc/service", |
| 64 "//services/service_manager/public/cpp", | 64 "//services/service_manager/public/cpp", |
| 65 "//services/service_manager/public/interfaces", | 65 "//services/service_manager/public/interfaces", |
| 66 "//services/shape_detection:lib", |
| 67 "//services/shape_detection/public/interfaces", |
| 66 "//services/ui/gpu", | 68 "//services/ui/gpu", |
| 67 "//services/ui/gpu/interfaces", | 69 "//services/ui/gpu/interfaces", |
| 68 "//skia", | 70 "//skia", |
| 69 "//ui/events/ipc", | 71 "//ui/events/ipc", |
| 70 "//ui/gfx/ipc", | 72 "//ui/gfx/ipc", |
| 71 "//ui/gl", | 73 "//ui/gl", |
| 72 "//ui/gl/init", | 74 "//ui/gl/init", |
| 73 ] | 75 ] |
| 74 | 76 |
| 75 if (is_android) { | 77 if (is_android) { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 102 } | 104 } |
| 103 | 105 |
| 104 if (use_ozone) { | 106 if (use_ozone) { |
| 105 deps += [ "//ui/ozone" ] | 107 deps += [ "//ui/ozone" ] |
| 106 } | 108 } |
| 107 | 109 |
| 108 if (enable_vulkan) { | 110 if (enable_vulkan) { |
| 109 deps += [ "//gpu/vulkan" ] | 111 deps += [ "//gpu/vulkan" ] |
| 110 } | 112 } |
| 111 } | 113 } |
| OLD | NEW |