forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
53 lines (50 loc) · 1.01 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
# 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/impeller/tools/impeller.gni")
impeller_component("geometry") {
sources = [
"color.cc",
"color.h",
"constants.cc",
"constants.h",
"matrix.cc",
"matrix.h",
"matrix_decomposition.cc",
"matrix_decomposition.h",
"path.cc",
"path.h",
"path_builder.cc",
"path_builder.h",
"path_component.cc",
"path_component.h",
"point.cc",
"point.h",
"quaternion.cc",
"quaternion.h",
"rect.cc",
"rect.h",
"scalar.h",
"shear.cc",
"shear.h",
"size.cc",
"size.h",
"type_traits.cc",
"type_traits.h",
"vector.cc",
"vector.h",
"vertices.cc",
"vertices.h",
]
}
impeller_component("geometry_unittests") {
testonly = true
sources = [
"geometry_unittests.cc",
"geometry_unittests.h",
]
deps = [
":geometry",
"//flutter/testing",
]
}