forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
43 lines (34 loc) · 2.42 KB
/
BUILD
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
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
# Pants source code
source_root('src/python', page, python_binary, python_library, resources)
# Pants test code
source_root('tests/python', page, python_library, python_tests, python_test_suite, python_binary, resources)
# TODO(Eric Ayers) Find a way to reduce source_root() invocations. The declarations in
# 'testprojects' and 'examples' are repetitive.
# Projects used by tests to exercise pants functionality
source_root('testprojects/src/antlr', page, java_antlr_library, python_antlr_library)
source_root('testprojects/src/java', annotation_processor, jvm_binary, java_library, page)
source_root('testprojects/src/protobuf', java_protobuf_library, jar_library, page)
source_root('testprojects/src/scala', jvm_binary, page, scala_library, benchmark)
source_root('testprojects/src/thrift', java_thrift_library, page, python_thrift_library)
source_root('testprojects/tests/java', java_library, junit_tests, page)
source_root('testprojects/tests/python', page, python_library, python_tests, python_test_suite, python_binary, resources)
source_root('testprojects/tests/resources', page, resources)
source_root('testprojects/tests/scala', page, junit_tests, scala_library, scala_specs)
# Example code intended to demonstrate to end users how to use Pants BUILD configuration
source_root('examples/src/android', page, android_resources, android_binary)
source_root('examples/src/antlr', page, java_antlr_library, python_antlr_library)
source_root('examples/src/java', annotation_processor, jvm_binary, java_library, page)
source_root('examples/src/protobuf', java_protobuf_library, jar_library, page)
source_root('examples/src/python', page, python_binary, python_library, resources)
source_root('examples/src/resources', page, resources, jaxb_library)
source_root('examples/src/scala', jvm_binary, page, scala_library, benchmark)
source_root('examples/src/thrift', java_thrift_library, page, python_thrift_library)
source_root('examples/src/wire', java_wire_library, page)
source_root('examples/tests/java', java_library, junit_tests, page)
source_root('examples/tests/python', page, python_library, python_tests, python_test_suite, python_binary, resources)
source_root('examples/tests/resources', page, resources)
source_root('examples/tests/scala', page, junit_tests, scala_library, scala_specs)
page(name="readme",
source="README.md")