aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2018-12-12 11:40:25 -0800
committerGravatar Alexander Polcyn <apolcyn@google.com>2018-12-12 11:40:25 -0800
commitac6795a57e05523b8fa220bc5cef26abb876aae5 (patch)
treeb010216c31fb7304502a667ccd595eefe96638e6 /tools/run_tests
parent311ee1eda13a340f1f33638920965f9f753b9d26 (diff)
Revert "Changes add a script for generating C code and build rule for protobuf"
Diffstat (limited to 'tools/run_tests')
-rw-r--r--tools/run_tests/generated/sources_and_headers.json21
-rwxr-xr-xtools/run_tests/sanity/check_port_platform.py3
2 files changed, 0 insertions, 24 deletions
diff --git a/tools/run_tests/generated/sources_and_headers.json b/tools/run_tests/generated/sources_and_headers.json
index 5b0041a250..2451101f58 100644
--- a/tools/run_tests/generated/sources_and_headers.json
+++ b/tools/run_tests/generated/sources_and_headers.json
@@ -8834,27 +8834,6 @@
{
"deps": [],
"headers": [
- "third_party/upb/google/protobuf/descriptor.upb.h",
- "third_party/upb/upb/decode.h",
- "third_party/upb/upb/def.h",
- "third_party/upb/upb/encode.h",
- "third_party/upb/upb/handlers.h",
- "third_party/upb/upb/msg.h",
- "third_party/upb/upb/msgfactory.h",
- "third_party/upb/upb/refcounted.h",
- "third_party/upb/upb/sink.h",
- "third_party/upb/upb/upb.h"
- ],
- "is_filegroup": false,
- "language": "c",
- "name": "upb",
- "src": [],
- "third_party": false,
- "type": "lib"
- },
- {
- "deps": [],
- "headers": [
"third_party/zlib/crc32.h",
"third_party/zlib/deflate.h",
"third_party/zlib/gzguts.h",
diff --git a/tools/run_tests/sanity/check_port_platform.py b/tools/run_tests/sanity/check_port_platform.py
index 8c412700e4..fff828eaee 100755
--- a/tools/run_tests/sanity/check_port_platform.py
+++ b/tools/run_tests/sanity/check_port_platform.py
@@ -35,9 +35,6 @@ def check_port_platform_inclusion(directory_root):
continue
if filename.endswith('.pb.h') or filename.endswith('.pb.c'):
continue
- # Skip check for upb generated code
- if filename.endswith('.upb.h') or filename.endswith('.upb.c'):
- continue
with open(path) as f:
all_lines_in_file = f.readlines()
for index, l in enumerate(all_lines_in_file):