blob: b27d0bc6016f750f2dbccf531994c1d6ec599406 [file] [log] [blame]
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../tools/impeller.gni")
group("backend") {
public_deps = []
if (impeller_enable_metal) {
assert(is_mac || is_ios)
public_deps += [ "metal" ]
}
if (impeller_enable_opengles) {
assert(is_mac || is_linux || is_win || is_android || is_qnx || is_wasm)
public_deps += [ "gles" ]
}
if (impeller_enable_vulkan) {
assert(is_mac || is_linux || is_win || is_android || is_qnx)
public_deps += [ "vulkan" ]
}
}