forked from facebook/buck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.buckconfig
49 lines (48 loc) · 1.54 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
49
[java]
; Indicates that any folder named src or test
; are folders that contain Java code.
src_roots = src, test
source_level = 7
target_level = 7
[alias]
buck = //programs:buck
buck-android-support = //src/com/facebook/buck/android/support:buck-android-support
eden = //test/com/facebook/buck/eden/cli:cli_bin
hmaptool = //src/com/facebook/buck/apple/clang:hmaptool
ideabuck = //src/com/facebook/buck/intellij/ideabuck:ideabuck
maven-importer = //src/com/facebook/buck/maven:resolver
[autodeps]
java-package-mappings = com.google.caliper => //third-party/java/caliper:caliper
[buildfile]
includes = //DEFS
[log]
rule_key_logger_enabled = True
[cache]
; Disable the default directory cache.
mode =
[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
; Common temp file patterns:
; .*\.swp$ (vim)
; ^#.*#$, .*~$ (emacs)
; .*___jb_bak___$, .*___jb_old___$ (intellij idea)
temp_files = \
.*\.swp$, \
^#.*#$, .*~$, \
.*___jb_bak___$, .*___jb_old___$,
; Forbid symlinks for source files so Buck does not have to dump its
; cache every time it encounters one.
allow_symlinks = forbid
enable_build_file_sandboxing = true
[test]
; Maximum timeout of 1 minute per test.
timeout = 60000