aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java
diff options
context:
space:
mode:
authorGravatar David Chen <dzc@google.com>2016-02-10 12:52:11 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-02-10 16:34:46 +0000
commitea02b8a51fc924755971f78e392100b50d8dc5a2 (patch)
tree54ed40e7e37fa90ce0a4e7d44fb1566e7c147176 /src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java
parent847a41816c08b846e09c62834f28fbbcb08d5d6d (diff)
Add imports attribute to Bazel native Python rules to allow adding directories to PYTHONPATH.
Fixes #702 RELNOTES: Add imports attribute to native Python rules. -- MOS_MIGRATED_REVID=114314430
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java b/src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java
new file mode 100644
index 0000000000..03bb52aa70
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/rules/python/PythonImportsProvider.java
@@ -0,0 +1,36 @@
+// Copyright 2016 The Bazel Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+package com.google.devtools.build.lib.rules.python;
+
+import com.google.devtools.build.lib.analysis.TransitiveInfoProvider;
+import com.google.devtools.build.lib.collect.nestedset.NestedSet;
+import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
+import com.google.devtools.build.lib.vfs.PathFragment;
+
+/**
+ * A {@link TransitiveInfoProvider} that supplies import directories for Python dependencies.
+ */
+@Immutable
+public final class PythonImportsProvider implements TransitiveInfoProvider {
+
+ private final NestedSet<PathFragment> transitivePythonImports;
+
+ public PythonImportsProvider(NestedSet<PathFragment> transitivePythonImports) {
+ this.transitivePythonImports = transitivePythonImports;
+ }
+
+ public NestedSet<PathFragment> getTransitivePythonImports() {
+ return transitivePythonImports;
+ }
+}