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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 2014 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.
import("//testing/libfuzzer/fuzzer_test.gni")
static_library("feedback") {
sources = [
"feedback_common.cc",
"feedback_common.h",
"feedback_data.cc",
"feedback_data.h",
"feedback_report.cc",
"feedback_report.h",
"feedback_switches.cc",
"feedback_switches.h",
"feedback_uploader.cc",
"feedback_uploader.h",
"feedback_uploader_factory.cc",
"feedback_uploader_factory.h",
"feedback_util.cc",
"feedback_util.h",
"redaction_tool.cc",
"redaction_tool.h",
"system_logs/system_logs_fetcher.cc",
"system_logs/system_logs_fetcher.h",
"system_logs/system_logs_source.cc",
"system_logs/system_logs_source.h",
"tracing_manager.cc",
"tracing_manager.h",
]
deps = [
"//base",
"//build:chromeos_buildflags",
"//components/feedback/proto",
"//components/keyed_service/content",
"//components/keyed_service/core",
"//components/variations/net",
"//content/public/browser",
"//content/public/common",
"//google_apis",
"//net",
"//services/network/public/cpp",
"//third_party/re2",
"//third_party/zlib/google:zip",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"feedback_common_unittest.cc",
"feedback_data_unittest.cc",
"feedback_uploader_dispatch_unittest.cc",
"feedback_uploader_unittest.cc",
"redaction_tool_unittest.cc",
]
if (!is_win) {
sources += [ "feedback_util_unittest.cc" ]
}
deps = [
":feedback",
"//base",
"//build:chromeos_buildflags",
"//components/feedback/proto",
"//components/keyed_service/core",
"//components/prefs:test_support",
"//components/sync_preferences:test_support",
"//components/user_prefs",
"//components/variations/net",
"//content/test:test_support",
"//net:test_support",
"//services/network:test_support",
"//services/network/public/cpp",
"//testing/gmock",
"//testing/gtest",
]
}
fuzzer_test("redaction_tool_fuzzer") {
sources = [ "redaction_tool_fuzzer.cc" ]
deps = [ ":feedback" ]
dict = "redaction_tool_fuzzer.dict"
}
|