forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
21 lines (17 loc) · 1006 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
# Pants source code
source_root('src/java', page, java_library, jvm_binary)
source_root('src/python', page, python_binary, python_library, resources)
source_root('src/resources', page, resources)
source_root('src/scala', page, scala_library, jvm_binary)
# Pants test code
source_root('tests/java', page, java_library, junit_tests, jvm_binary)
source_root('tests/python', page, python_library, python_tests, python_test_suite, python_binary,
resources)
source_root('tests/resources', page, resources)
# Pants own plugins for this repo's exclusive use
source_root('pants-plugins/src/python', page, python_binary, python_library, resources)
source_root('pants-plugins/tests/python', page, python_library, python_tests, python_test_suite,
python_binary, resources)
page(name="readme", source="README.md")