forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.gn
34 lines (30 loc) · 924 Bytes
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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",
]
}