diff options
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/CC/TARGETS | 3 | ||||
-rw-r--r-- | etc/defaults/CC/auto/TARGETS | 1 | ||||
-rw-r--r-- | etc/defaults/CC/foreign/TARGETS | 7 | ||||
-rw-r--r-- | etc/defaults/CC/proto/TARGETS | 14 | ||||
-rw-r--r-- | etc/defaults/CC/test/TARGETS | 1 | ||||
-rw-r--r-- | etc/defaults/patch/TARGETS | 3 | ||||
-rw-r--r-- | etc/defaults/shell/TARGETS | 1 | ||||
-rw-r--r-- | etc/defaults/shell/test/TARGETS | 1 |
8 files changed, 31 insertions, 0 deletions
diff --git a/etc/defaults/CC/TARGETS b/etc/defaults/CC/TARGETS new file mode 100644 index 0000000..6e095cc --- /dev/null +++ b/etc/defaults/CC/TARGETS @@ -0,0 +1,3 @@ +{ "defaults": + {"type": ["CC", "defaults"], "base": [["@", "base", "CC", "defaults"]]} +} diff --git a/etc/defaults/CC/auto/TARGETS b/etc/defaults/CC/auto/TARGETS new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/etc/defaults/CC/auto/TARGETS @@ -0,0 +1 @@ +{} diff --git a/etc/defaults/CC/foreign/TARGETS b/etc/defaults/CC/foreign/TARGETS new file mode 100644 index 0000000..5fbb6a9 --- /dev/null +++ b/etc/defaults/CC/foreign/TARGETS @@ -0,0 +1,7 @@ +{ "defaults": + { "type": ["CC/foreign", "defaults"] + , "MAKE": ["make"] + , "CMAKE": ["cmake"] + , "PATH": ["/bin", "/usr/bin"] + } +} diff --git a/etc/defaults/CC/proto/TARGETS b/etc/defaults/CC/proto/TARGETS new file mode 100644 index 0000000..95ae1b0 --- /dev/null +++ b/etc/defaults/CC/proto/TARGETS @@ -0,0 +1,14 @@ +{ "defaults": + { "type": ["CC/proto", "defaults"] + , "PROTOC": ["bin/protoc"] + , "deps": [["@", "protoc", "", "libprotobuf"]] + , "toolchain": [["@", "protoc", "", "toolchain"]] + } +, "service defaults": + { "type": ["CC/proto", "defaults"] + , "base": ["defaults"] + , "GRPC_PLUGIN": ["grpc_cpp_plugin"] + , "deps": [["@", "grpc", "", "grpc++"]] + , "toolchain": [["@", "grpc", "", "grpc_cpp_plugin"]] + } +} diff --git a/etc/defaults/CC/test/TARGETS b/etc/defaults/CC/test/TARGETS new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/etc/defaults/CC/test/TARGETS @@ -0,0 +1 @@ +{} diff --git a/etc/defaults/patch/TARGETS b/etc/defaults/patch/TARGETS new file mode 100644 index 0000000..16a4670 --- /dev/null +++ b/etc/defaults/patch/TARGETS @@ -0,0 +1,3 @@ +{ "defaults": + {"type": ["patch", "defaults"], "base": [["@", "base", "patch", "defaults"]]} +} diff --git a/etc/defaults/shell/TARGETS b/etc/defaults/shell/TARGETS new file mode 100644 index 0000000..705d1d7 --- /dev/null +++ b/etc/defaults/shell/TARGETS @@ -0,0 +1 @@ +{"defaults": {"type": "defaults"}} diff --git a/etc/defaults/shell/test/TARGETS b/etc/defaults/shell/test/TARGETS new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/etc/defaults/shell/test/TARGETS @@ -0,0 +1 @@ +{} |