forked from flutter/impeller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
41 lines (37 loc) · 874 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
35
36
37
38
39
40
41
# 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.
config("impeller_public_config") {
include_dirs = [ ".." ]
}
group("impeller") {
public_deps = [
"aiks",
"archivist",
"base",
"display_list",
"entity",
"geometry",
"image",
"renderer",
"tessellator",
"typographer",
]
}
executable("impeller_unittests") {
testonly = true
deps = [
"aiks:aiks_unittests",
"archivist:archivist_unittests",
"base:base_unittests",
"compiler:compiler_unittests",
"display_list:display_list_unittests",
"entity:entity_unittests",
"fixtures",
"geometry:geometry_unittests",
"image:image_unittests",
"playground",
"renderer:renderer_unittests",
"typographer:typographer_unittests",
]
}