1# Copyright 2018 Google LLC 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15licenses(["notice"]) 16 17cc_binary( 18 name = "quic_trace_to_time_sequence_gnuplot", 19 srcs = ["quic_trace_to_time_sequence_gnuplot.cc"], 20 deps = [ 21 "//quic_trace:quic_trace_cc_proto", 22 "@com_google_absl//absl/container:flat_hash_map", 23 "@com_google_absl//absl/container:flat_hash_set", 24 "@com_google_absl//absl/flags:flag", 25 "@com_google_absl//absl/flags:parse", 26 ], 27) 28 29cc_binary( 30 name = "transform_quic_trace", 31 srcs = ["transform_quic_trace.cc"], 32 deps = [ 33 "//quic_trace:quic_trace_cc_proto", 34 "@com_google_absl//absl/flags:flag", 35 "@com_google_absl//absl/flags:parse", 36 "@com_google_absl//absl/strings", 37 "@com_google_protobuf//:protobuf", 38 ], 39) 40 41sh_binary( 42 name = "time_sequence_gnuplot", 43 srcs = ["time_sequence_gnuplot.sh"], 44 data = [":quic_trace_to_time_sequence_gnuplot"], 45) 46