blob: b7b998d3b1b9a3c75939e736b19bb8a0d7bed86c [file] [log] [blame]
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# Artifacts from the Flutter Engine repository built in
# debug mode for the x64 architecture: https://github.com/flutter/engine
# Shared library implementing the embedder.h header.
#
# TODO(akbiggs): This should come from a CIPD bucket instead.
cc_library(
name = "libflutter_engine",
srcs = ["libflutter_engine.so"],
visibility = ["//src/embedder/engine:__pkg__"],
deps = [
"@fuchsia_sdk//pkg/memfs",
"@fuchsia_sdk//pkg/vulkan",
],
)
exports_files(
["libflutter_engine.so"],
visibility = ["//src/embedder/engine:__pkg__"],
)