Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: .gitignore

Issue 1006813013: Cleanup .gitignore file (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This is a standard .gitignore file, used to exclude certain files 1 # This is a standard .gitignore file, used to exclude certain files
2 # from a 'git status' command and other similar commands. 2 # from a 'git status' command and other similar commands.
3 # Please keep each section in alphabetical order. 3 # Please keep each section in alphabetical order.
4 4
5 # Ignore these filename patterns 5 # Ignore these filename patterns
6 *~ 6 *~
7 *.gypcmd
8 *.Makefile
9 *.mk
10 *.props
11 *.pyc 7 *.pyc
12 *.pyc-2.4
13 *.pyo 8 *.pyo
14 *.pyo-2.4
15 *.rules
16 *.sdf
17 *.sln
18 *.slo
19 *.swp 9 *.swp
20 *.suo
21 *.targets
22 *.user
23 *.vcproj
24 *.vcxproj
25 *.vcxproj.filters
26 *.xcodeproj/
27 testserver.log 10 testserver.log
28 11
29 # Ignore these directories wherever they appear 12 # Ignore these directories wherever they appear
30 .cproject/ 13 .cproject/
31 .project/ 14 .project/
32 .pydevproject/ 15 .pydevproject/
33 .settings/ 16 .settings/
34 hg/
35 toolchain/hg-build/
36 toolchain/hg-log/
37 17
38 # toolchain_build/toolchain_build.py creates these. 18 # toolchain_build/toolchain_build.py creates these.
39 toolchain_build/cache/ 19 /toolchain_build/cache/
40 toolchain_build/git_cache/ 20 /toolchain_build/git_cache/
41 toolchain_build/out/ 21 /toolchain_build/out/
42 toolchain_build/src/ 22 /toolchain_build/src/
43 23
44 # Ignore these absolute directories (relative to native_client directory) 24 # Ignore these absolute directories (relative to native_client directory)
45 /build/Debug/ 25 /build/Debug/
46 /build/Release/ 26 /build/Release/
47 /chromebinaries/ 27 /chromebinaries/
48 /scons-out/ 28 /scons-out/
49 /toolchain/ 29 /toolchain/
50 /tools/BUILD/ 30 /tools/BUILD/
51 /tools/out/ 31 /tools/out/
52 /tools/perf_expectations/ 32 /tools/perf_expectations/
53 /tools/SRC/ 33 /tools/SRC/
54 /tools/gn/bin/linux 34 /tools/gn/bin/linux
55 /tools/gn/bin/mac 35 /tools/gn/bin/mac
56 /tools/gn/bin/win 36 /tools/gn/bin/win
57 37
58 # These directories only show up if you have supplement.DEPS in your .gclient 38 # These directories only show up if you have supplement.DEPS in your .gclient
59 /private_tests/ 39 /private_tests/
60 /private_tools/ 40 /private_tools/
61 /supplement/ 41 /supplement/
62 42
63 # These directories are created by running tests/spec2k/run_all.sh 43 # These directories are created by running tests/spec2k/run_all.sh
64 /tests/spec2k/bin/ 44 /tests/spec2k/bin/
65 /tests/spec2k/[0-9][0-9][0-9].*/ 45 /tests/spec2k/[0-9][0-9][0-9].*/
66 46
67 # These directories are created by pnacl/build.sh sync-sources 47 # These directories are created by pnacl/build.sh sync-sources
68 pnacl/build/ 48 /pnacl/build/
69 pnacl/git/ 49 /pnacl/git/
70 pnacl/src/ 50 /pnacl/src/
71 51
72 # Ignore the hermetic cygwin used on windows toolchain builds. 52 # Ignore the hermetic cygwin used on windows toolchain builds.
73 cygwin/ 53 /cygwin/
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698