forked from facebook/buck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.buckconfig
67 lines (66 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[java]
; Indicates that any folder named src or test
; are folders that contain Java code.
src_roots = src, test
source_level = 8
target_level = 8
jar_spool_mode = direct_to_jar
abi_generation_mode = source_with_deps
# There is some nondeterminism with the Immutables processor that causes verification to
# fail intermittently at the moment. Once we're generating source ABIs as part of compilation
# (instead of as a separate step), this can become an error again:
source_abi_verification_mode = log
compile_against_abis = True
[alias]
buck = //programs:buck
buck-android-support = //android/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
[buildfile]
includes = //DEFS
[log]
rule_key_logger_enabled = True
[cache]
; Disable the default directory cache.
mode =
[build]
metadata_storage = sqlite
[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".
; Common temp file patterns: vim, emacs, intelliJ
ignore = \
.git, \
.buckd, \
build, \
bin, \
**/*.swp, \
**/*#, \
**/*$, \
**/*~, \
**/*___jb_bak___, \
**/*___jb_old___, \
**/*___jb_tmp___, \
**/.*.swp, \
**/.*.swx, \
**/.*.swpx, \
**/.*.swo, \
**/*.pyc, \
**/.#*, \
**/*~, \
**/4913, \
**/*.linted, \
**/*.iml
; Forbid symlinks for source files so Buck does not have to dump its
; cache every time it encounters one.
allow_symlinks = forbid
watchman_cursor = clock_id
glob_handler = watchman
[test]
; Maximum timeout of 1 minute per test.
timeout = 90000