Chromium Code Reviews| 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 | 7 |
| 8 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
| 9 group("gpu") { | 9 group("gpu") { |
| 10 visibility = [ "//content/*" ] # This is an internal content API. | 10 visibility = [ "//content/*" ] # This is an internal content API. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 50 "//content/child", | 50 "//content/child", |
| 51 "//content/common", | 51 "//content/common", |
| 52 "//content/public/child:child_sources", | 52 "//content/public/child:child_sources", |
| 53 "//content/public/common:common_sources", | 53 "//content/public/common:common_sources", |
| 54 "//gpu:gpu", | 54 "//gpu:gpu", |
| 55 "//gpu/ipc/common:command_buffer_traits", | 55 "//gpu/ipc/common:command_buffer_traits", |
| 56 "//gpu/ipc/service", | 56 "//gpu/ipc/service", |
| 57 "//ipc", | 57 "//ipc", |
| 58 "//media/gpu", | 58 "//media/gpu", |
| 59 "//media/gpu/ipc/service", | 59 "//media/gpu/ipc/service", |
| 60 "//media/mojo/services:application_factory", | |
|
xhwang
2016/05/12 06:32:25
+brettw: This was added in https://codereview.chro
| |
| 61 "//services/shell/public/interfaces", | 60 "//services/shell/public/interfaces", |
| 62 "//skia", | 61 "//skia", |
| 63 "//ui/events/ipc", | 62 "//ui/events/ipc", |
| 64 "//ui/gfx/ipc", | 63 "//ui/gfx/ipc", |
| 65 "//ui/gl", | 64 "//ui/gl", |
| 66 ] | 65 ] |
| 67 | 66 |
| 68 if (mojo_media_host == "gpu") { | 67 if (mojo_media_host == "gpu") { |
| 69 deps += [ "//media/mojo/services:application_factory" ] | 68 deps += [ "//media/mojo/services" ] |
|
ddorwin
2016/05/11 23:02:27
This was previously always included. Was that inco
xhwang
2016/05/16 05:41:20
We should either only always include, or only cond
| |
| 70 if (is_android) { | 69 if (is_android) { |
| 71 deps += [ "//media/base/android" ] | 70 deps += [ "//media/base/android" ] |
| 72 } | 71 } |
| 73 } | 72 } |
| 74 | 73 |
| 75 if (is_win) { | 74 if (is_win) { |
| 76 configs += [ | 75 configs += [ |
| 77 "//third_party/khronos:khronos_headers", | 76 "//third_party/khronos:khronos_headers", |
| 78 "//third_party/wtl:wtl_includes", | 77 "//third_party/wtl:wtl_includes", |
| 79 ] | 78 ] |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 94 } | 93 } |
| 95 | 94 |
| 96 if (use_ozone) { | 95 if (use_ozone) { |
| 97 deps += [ "//ui/ozone" ] | 96 deps += [ "//ui/ozone" ] |
| 98 } | 97 } |
| 99 | 98 |
| 100 if (enable_vulkan) { | 99 if (enable_vulkan) { |
| 101 deps += [ "//gpu/vulkan" ] | 100 deps += [ "//gpu/vulkan" ] |
| 102 } | 101 } |
| 103 } | 102 } |
| OLD | NEW |