1// Copyright 2020 The Pigweed Authors 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); you may not 4// use this file except in compliance with the License. You may obtain a copy of 5// 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, WITHOUT 11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12// License for the specific language governing permissions and limitations under 13// the License. 14syntax = "proto3"; 15 16import 'pw_protobuf_test_deps_protos/imported.proto'; 17import 'pw_protobuf_test_protos/imported.proto'; 18import 'pw_protobuf_protos/common.proto'; 19import 'test_prefix/test_prefix_imported.proto'; 20 21package pw.protobuf.test; 22 23message Period { 24 imported.Timestamp start = 1; 25 imported.Timestamp end = 2; 26} 27 28message Nothing { 29 pw.protobuf.Empty nothing = 1; 30} 31 32message TestResult { 33 imported.Status status = 1; 34} 35 36message TestMessage { 37 imported.Notice notice = 1; 38 imported.Debug debug = 2; 39 imported.PrefixDebug prefix_debug = 3; 40} 41