aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Hector Chavez <lhchavez@google.com>2019-03-27 15:41:11 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-03-27 15:41:11 -0700
commit2762f473dfefb0bd2dcf2fcf131bd7b0f15febf3 (patch)
treec6f802b88152a6a80d78abd6277bda28ce050787
parentbdc3a2ff93946aa96ff9f2d7fb80bd6b003b734f (diff)
parent2f057f76bfdf10c2c7d45fd1f7d7d9bad664ca7f (diff)
downloadminijail-2762f473dfefb0bd2dcf2fcf131bd7b0f15febf3.tar.gz
tools/compile_seccomp_policy: Add support for Blueprint am: e2a7f4b9c4
am: 2f057f76bf Change-Id: I4a1e4282e9e1103fd2bf67ceb88892624a02f537
-rw-r--r--tools/Android.bp78
1 files changed, 78 insertions, 0 deletions
diff --git a/tools/Android.bp b/tools/Android.bp
new file mode 100644
index 0000000..5ff3462
--- /dev/null
+++ b/tools/Android.bp
@@ -0,0 +1,78 @@
+// Copyright (C) 2019 The Android Open Source Project
+//
+// 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.
+
+python_binary_host {
+ name: "minijail_compile_seccomp_policy",
+ main: "compile_seccomp_policy.py",
+ srcs: [
+ "arch.py",
+ "bpf.py",
+ "compile_seccomp_policy.py",
+ "compiler.py",
+ "parser.py",
+ ],
+ version: {
+ py2: {
+ enabled: false,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+}
+
+python_test_host {
+ name: "minijail_parser_unittest",
+ main: "parser_unittest.py",
+ srcs: [
+ "arch.py",
+ "bpf.py",
+ "parser.py",
+ "parser_unittest.py",
+ ],
+ data: [
+ "testdata/arch_64.json",
+ ],
+ version: {
+ py2: {
+ enabled: false,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+}
+
+python_test_host {
+ name: "minijail_compiler_unittest",
+ main: "compiler_unittest.py",
+ srcs: [
+ "arch.py",
+ "bpf.py",
+ "compiler.py",
+ "compiler_unittest.py",
+ "parser.py",
+ ],
+ data: [
+ "testdata/arch_64.json",
+ ],
+ version: {
+ py2: {
+ enabled: false,
+ },
+ py3: {
+ enabled: true,
+ },
+ },
+}