diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-10 14:30:15 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-10 14:30:15 +0300 |
commit | 0232d475999dc4dba7f133a000bac5071e7f1244 (patch) | |
tree | 33574ee9cda15177e9b44f299fd75adb9718c871 | |
parent | 4d9e9a234e8f13e18ed5094c23a672ca73f3a0e5 (diff) | |
download | ydb-0232d475999dc4dba7f133a000bac5071e7f1244.tar.gz |
intermediate changes
ref:d11f5f6b541544acd9d16d71f4b035a55fc87f92
-rw-r--r-- | build/ya.conf.json | 4 | ||||
-rw-r--r-- | build/ymake.core.conf | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/build/ya.conf.json b/build/ya.conf.json index d3a43abe5eb..fad74237b50 100644 --- a/build/ya.conf.json +++ b/build/ya.conf.json @@ -8072,7 +8072,9 @@ }, "aws": { "formula": { - "sandbox_id": 489186634, + "sandbox_id": [ + 1076727104 + ], "match": "aws" }, "executable": { diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 08deff83e10..35571d87316 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -9480,3 +9480,13 @@ macro COLLECT_YDB_API_SPECS_LEGACY(FILES_VAR, PATHS...) { _GLOB($FILES_VAR ${suf=/*.proto:PATHS}) RESTRICT_PATH(kikimr/public/sdk/go/ydb/api MSG This is ugly hack for legacy YDB go API codegen, any other uses are probibited) } + +# tag:proto tag:apphost +### @usage: APPHOST() +### +### Emit APPHOST service code for all .proto files in a PROTO_LIBRARY. +### This works only for C++ at the moment. +macro APPHOST() { + # C++ + CPP_PROTO_PLUGIN(cpp_stub_generator apphost/tools/cpp_stub_generator .apphost.h) +} |