forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
39 lines (33 loc) · 765 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
# Copyright 2015 The Chromium 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("data_pipe_utils") {
sources = [
"data_pipe_drainer.cc",
"data_pipe_drainer.h",
"data_pipe_file_utils.cc",
"data_pipe_utils.cc",
"data_pipe_utils.h",
"data_pipe_utils_internal.h",
]
if (is_nacl) {
sources -= [ "data_pipe_file_utils.cc" ]
}
deps = [
"//base",
"//mojo/message_pump",
"//mojo/public/cpp/environment:environment",
"//mojo/public/cpp/system",
]
}
source_set("tests") {
testonly = true
sources = [
"data_pipe_utils_unittest.cc",
]
deps = [
":data_pipe_utils",
"//base",
"//testing/gtest",
]
}