| # 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_proto_edition") { |
| proto_in_dir = "//" |
| sources = [ "test_proto_edition.proto" ] |
| } |
| |
| proto_extras("test_proto_edition_extras") { |
| sources = [ "test_proto_edition.proto" ] |
| |
| deps = [ ":test_proto_edition" ] |
| } |
| |
| proto_test_extras("test_proto_edition_test_extras") { |
| sources = [ "test_proto_edition.proto" ] |
| deps = [ ":test_proto_edition" ] |
| extras_deps = [ ":test_proto_edition_extras" ] |
| } |