forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
70 lines (62 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("lib") {
sources = [
"annotator.cc",
"annotator.h",
"image_annotation_metrics.cc",
"image_annotation_metrics.h",
"image_annotation_utils.cc",
"image_annotation_utils.h",
]
visibility = [ "/*" ]
deps = [
"//base",
"//components/google/core/common",
"//mojo/public/cpp/bindings",
"//net",
"//services/data_decoder/public/mojom",
"//services/image_annotation/public/mojom",
"//services/network/public/cpp",
"//url",
]
}
source_set("service") {
sources = [
"image_annotation_service.cc",
"image_annotation_service.h",
]
public_deps = [
":lib",
"//base",
"//services/data_decoder/public/mojom",
"//services/image_annotation/public/mojom",
"//services/network/public/cpp",
"//url",
]
}
source_set("tests") {
testonly = true
sources = [ "annotator_unittest.cc" ]
deps = [
":lib",
"//base",
"//base/test:test_support",
"//mojo/public/cpp/bindings",
"//net",
"//services/data_decoder/public/cpp",
"//services/data_decoder/public/cpp:test_support",
"//services/data_decoder/public/mojom",
"//services/image_annotation/public/cpp",
"//services/image_annotation/public/mojom",
"//services/network:test_support",
"//services/network/public/cpp",
"//services/service_manager/public/cpp",
"//services/service_manager/public/cpp/test:test_support",
"//services/service_manager/public/mojom",
"//testing/gmock",
"//testing/gtest",
"//url",
]
}