forked from facebook/buck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.buckconfig
48 lines (47 loc) · 1.46 KB
/
.buckconfig
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
[java]
; Indicates that any folder named src or test
; are folders that contain Java code.
src_roots = src, test
[alias]
buck = //programs:buck
buck-win = //programs:buck-no-nailgun
buck-android-support = //src/com/facebook/buck/android/support:buck-android-support
hmaptool = //src/com/facebook/buck/apple/clang:hmaptool
maven-importer = //src/com/facebook/buck/maven:resolver
[buildfile]
includes = //DEFS
[download]
maven_repo = https://repo1.maven.org/maven2
[project]
; Directories that do not contain input files.
; All of these directories should also appear in the "ignore_dirs" list
; in .watchmanconfig, with the exception of ".git".
ignore = \
.git, \
.buckd, \
build, \
bin, \
src/com/facebook/buck/intellij/plugin, \
; Common temp file patterns:
; .*\.swp$ (vim)
; ^#.*#$, .*~$ (emacs)
; .*___jb_bak___$, .*___jb_old___$ (intellij idea)
temp_files = \
.*\.swp$, \
^#.*#$, .*~$, \
.*___jb_bak___$, .*___jb_old___$,
[test]
; Maximum timeout of 1 minute per test.
timeout = 60000
; Since watchman ignores buck-out and we need to use it for globs in
; Buck's own integration tests, use a directory outside buck-out
; for java.io.tmpdir when running tests.
temp_dir_env_vars = \
BUCK_ORIG_TEMPDIR, \
BUCK_ORIG_TEMP, \
BUCK_ORIG_TMPDIR, \
BUCK_ORIG_TMP, \
TEMPDIR, \
TEMP, \
TMPDIR, \
TMP