mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
23 lines
584 B
Plaintext
23 lines
584 B
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//third_party/protobuf/proto_library.gni")
|
|
|
|
tracing_proto_sources = [
|
|
"event.proto",
|
|
"events_chunk.proto",
|
|
]
|
|
|
|
# Official protobuf C++ stubs to test conformance.
|
|
proto_library("golden_protos_for_tests") {
|
|
visibility = [ "//components/tracing/*" ]
|
|
testonly = true
|
|
|
|
proto_in_dir = "."
|
|
proto_out_dir = "components/tracing/test/golden_protos"
|
|
sources = tracing_proto_sources
|
|
|
|
generate_python = false
|
|
}
|