blob: b9c4e4a9b146b47272e869a96e91498158d157db (
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
|
# This is a standard .gitignore file, used to exclude certain files
# from a 'git status' command, or similar
# Ignore these filename patterns
*.cmd
*.gz
*.nexe
*.nmf
*.o
*.pyc
*.pyo
# Ignore all hidden files
.*
# Ignore all directories than contain these names
toolchain/
# Ignore these particular directories (relative to src directory)
/build_tools/NSIS/
/build_tools/packages/
/build_tools/sdk_install_name.nsh
/build_tools/sdk_section.nsh
/build_tools/tests/apply_patch_test_archive/
/build_tools/toolchain_archives/
/chrome_binaries/
/debugger/NativeClientVSX/
/debugger/nacl-gdb_server/x64/
/experimental/webgtt/tests/nacltest/*.cc
/staging/
|