blob: 490f27c64f4e0174527afec30b063f86462ef4d2 [file] [log] [blame]
# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//components/proto_extras/proto_extras.gni")
import("//third_party/protobuf/proto_library.gni")
proto_library("test_proto2") {
proto_in_dir = "//"
sources = [ "test_proto2.proto" ]
}
proto_extras("test_proto2_extras") {
sources = [ "test_proto2.proto" ]
deps = [ ":test_proto2" ]
}
proto_test_extras("test_proto2_test_extras") {
sources = [ "test_proto2.proto" ]
deps = [ ":test_proto2" ]
extras_deps = [ ":test_proto2_extras" ]
}