forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
40 lines (35 loc) · 835 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
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//chromecast/chromecast.gni")
cast_source_set("mojo") {
sources = [
"binder_factory.cc",
"binder_factory.h",
"interface_bundle.cc",
"interface_bundle.h",
"remote_interfaces.cc",
"remote_interfaces.h",
]
deps = [
"//base",
"//chromecast/mojo/mojom",
"//mojo/public/cpp/bindings",
]
}
test("cast_mojo_unittests") {
sources = [
"binder_factory_test.cc",
"interface_bundle_test.cc",
]
deps = [
":mojo",
"//base",
"//base/test:test_support",
"//chromecast/mojo/test:run_all_unittests",
"//chromecast/mojo/test:test_mojom",
"//mojo/public/cpp/bindings",
"//testing/gmock",
"//testing/gtest",
]
}