1// Copyright 2018 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5// Depended on by lpm_test_fuzzer. Tests whether fuzzable_proto_library is 6// working since without it builds will fail because of the optimize_for 7// LITE_RUNTIME option this file has set. Also imports a file that does the same 8// thing. 9 10syntax = "proto2"; 11 12// This line is essentially the purpose of this test fuzzer. The build rule, if 13// working, ignores this line. If it is not working or isn't used, then this 14// build will fail. 15option optimize_for = LITE_RUNTIME; 16 17package lpm_test_fuzzer; 18import "imported.proto"; 19 20message TestFuzzerInput { 21 required Imported imported = 1; 22}