aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-05-19 09:46:33 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-05-21 09:44:32 +0000
commit173ee825277d64c8a852f25b6d6e0a85917342ec (patch)
treeee1c3b375d9ba2a3643954c88ecefaf1dca87d03 /src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java
parentddae7544cb4b61c8f7e42d98a033a11a0f58bc57 (diff)
Add a converter for enum flags that can also be boolean.
A new converter class is added that makes it possible for enum flags to define a conversion from booleans to one of the enumeration values. This is in addition to the enumeration conversions. Fields that define such a converter can be used with the --flag and --noflag forms in addition to their --flag=value enumeration style. -- MOS_MIGRATED_REVID=93972718
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java b/src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java
new file mode 100644
index 0000000000..b77473e7e8
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/rules/python/PrecompilePythonMode.java
@@ -0,0 +1,25 @@
+// Copyright 2014 Google Inc. 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;
+
+/**
+ * Enumerates the different modes of Python precompilation.
+ *
+ * NONE denotes that no precompilation should take place, and PROTO causes
+ * only the generated _pb/_pb2.py files to be precompiled.
+ */
+public enum PrecompilePythonMode {
+ NONE, PROTO; // TODO(scottgw) add 'ALL' element.
+}