aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
blob: 9ce33c52afb15f43d7390274d0b6bfa5532d2d33 (plain)
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
*.d
*.depends
/*.gen.c
*.o
*.a

/constants.json

# Coverage-related files that appear when building with MODE=profiling.
*.gcno
*.gcda
/lcov-coverage.info
/lcov-html/

# libseccomp.
/libseccomp/

# Python-related files.
/tools/__pycache__/
*.pyc

# Shared libraries when compiling in-tree.
*.so

# Executables when compiling in-tree.
/dump_constants
/libminijail_unittest
/minijail0
/minijail0_cli_unittest
/syscall_filter_unittest
/system_unittest
/util_unittest
/parse_seccomp_policy

# common.mk TEST().
*.test

# Google Test.
googletest-release*

# Cargo build targets.
/rust/**/target
/rust/**/*.rs.bk
/rust/**/Cargo.lock

# VSCode workspace.
minijail.code-workspace

# IntelliJ projects.
.idea