Commit 8b13906b authored by Daniel Nicoara's avatar Daniel Nicoara Committed by Commit Bot

cast: Don't include ANGLE dependencies

ANGLE increases the OTA size on devices with constrainted space. Since
Chromecast hasn't transitioned to passthrough command decoder yet, don't
depend on ANGLE for now.

Bug: 1097320
Bug: b/159166071
Test: Compiled
Change-Id: I86a966af39e652564754d0680a9366c159b63b88
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2422180Reviewed-by: default avatarMichael Spang <spang@chromium.org>
Commit-Queue: Daniel Nicoara <dnicoara@chromium.org>
Cr-Commit-Position: refs/heads/master@{#809014}
parent 9d09b6c4
......@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromecast_build.gni")
import("//build/config/linux/pkg_config.gni")
import("//gpu/vulkan/features.gni")
import("//ui/ozone/ozone.gni")
......@@ -150,10 +151,12 @@ source_set("gbm") {
"//ui/platform_window",
]
data_deps = [
"//third_party/angle:libEGL",
"//third_party/angle:libGLESv2",
]
if (!is_chromecast) {
data_deps = [
"//third_party/angle:libEGL",
"//third_party/angle:libGLESv2",
]
}
if (is_chromeos) {
deps += [ "//ui/base/ime/chromeos" ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment