blob: a73667598d4d3e0f4580fab11dd9770555544551 [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("//flutter/common/config.gni")
import("//flutter/testing/testing.gni")
source_set("graphics") {
sources = [
"gl_context_switch.cc",
"gl_context_switch.h",
"persistent_cache.cc",
"persistent_cache.h",
"texture.cc",
"texture.h",
]
# Heed caution when adding targets to the dependencies. This is a minimal
# target containing graphics sources that embedders can depend on. Any
# additions here could result in added app sizes across embeddings.
deps = [
"//flutter/assets",
"//flutter/fml",
"//flutter/shell/version:version",
"//third_party/boringssl",
"//third_party/rapidjson",
"//third_party/skia",
]
public_configs = [
"//flutter:config",
"//flutter/vulkan:vulkan_config",
]
}