blob: 0a1d06f7ff51c46b7342d8b04a6ce4d2cf251bfb [file] [log] [blame]
rharrison@chromium.org756b7e92012-03-28 05:02:17 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
rharrison@chromium.org3d530352012-02-10 03:14:08 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
nyquist@chromium.org02dc6012012-11-13 06:36:20 +09005option optimize_for = LITE_RUNTIME;
6
rharrison@chromium.org3d530352012-02-10 03:14:08 +09007// This is a simple dummy protocol buffer that is used for testing handling of
8// protocol buffers in MessageReader and MessageWriter.
9
10message TestProto {
11 optional string text = 1;
12 optional int32 number = 2;
nyquist@chromium.org02dc6012012-11-13 06:36:20 +090013}