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
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Library("dllservicestest")
UNIFIED_SOURCES += [
"TestDLLBlocklist.cpp",
"TestUntrustedModules.cpp",
]
LOCAL_INCLUDES += [
"/toolkit/components/telemetry/other",
"/toolkit/components/telemetry/tests/gtest",
]
TEST_DIRS += [
"rust",
"TestDllBlocklist_AllowByVersion",
"TestDllBlocklist_GMPluginProcessOnly",
"TestDllBlocklist_GPUProcessOnly",
"TestDllBlocklist_MatchByName",
"TestDllBlocklist_MatchByVersion",
"TestDllBlocklist_MultipleEntries_DifferentProcesses",
"TestDllBlocklist_MultipleEntries_SameProcessBackward",
"TestDllBlocklist_MultipleEntries_SameProcessForward",
"TestDllBlocklist_NoOpEntryPoint",
"TestDllBlocklist_SingleNotification1",
"TestDllBlocklist_SingleNotification2",
"TestDllBlocklist_SocketProcessOnly",
"TestDllBlocklist_UserBlocked",
"TestDllBlocklist_UtilityProcessOnly",
"TestUntrustedModules_Dll1",
"TestUntrustedModules_Dll2",
]
include("/ipc/chromium/chromium-config.mozbuild")
FINAL_LIBRARY = "xul-gtest"
|