aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/third_party.gni
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/third_party.gni')
-rw-r--r--third_party/third_party.gni9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/third_party.gni b/third_party/third_party.gni
index 5764c97108..7aaf63586f 100644
--- a/third_party/third_party.gni
+++ b/third_party/third_party.gni
@@ -26,3 +26,12 @@ template("third_party") {
set_defaults("third_party") {
configs = default_configs - [ "//gn:warnings" ]
}
+
+template("system") {
+ config(target_name + "_public") {
+ forward_variables_from(invoker, "*", [])
+ }
+ group(target_name) {
+ public_configs = [ ":" + target_name + "_public" ]
+ }
+}