blob: 05bda619cad5e885bdb8d24ad1db831bff1ab411 (
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
|
# 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
scons-out/
third_party/
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
/site_scons/
/staging/
|