forked from flutter-team-archive/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.gn
More file actions
30 lines (25 loc) · 631 Bytes
/
Copy pathBUILD.gn
File metadata and controls
30 lines (25 loc) · 631 Bytes
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
# 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.
source_set("file_loader") {
visibility = [ "../*" ]
configs += [ "../:config" ]
sources = [
"file_loader.cc",
"file_loader.h",
]
if (is_win) {
sources += [ "file_loader_win.cc" ]
} else if (is_fuchsia) {
sources += [ "file_loader_fuchsia.cc" ]
} else {
sources += [ "file_loader_posix.cc" ]
}
deps = [
"../common",
"../converter",
"../filesystem",
"../parsers",
"//third_party/dart/runtime:dart_api",
]
}