diff options
author | nyquist@chromium.org <nyquist@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-12 21:36:20 +0000 |
---|---|---|
committer | nyquist@chromium.org <nyquist@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-12 21:36:20 +0000 |
commit | 93115b583d5fa6235abe81820b0df26861196542 (patch) | |
tree | dc0be0c23cb8edfeeb81f2347cefceb4c4fe6ffa /dbus | |
parent | 1ba5dd614a3648feb6c23fa794dc7654a759b2b4 (diff) | |
download | chromium_src-93115b583d5fa6235abe81820b0df26861196542.zip chromium_src-93115b583d5fa6235abe81820b0df26861196542.tar.gz chromium_src-93115b583d5fa6235abe81820b0df26861196542.tar.bz2 |
Revert "Linux: change protobuf default option to allow building"
This reverts commit baefae90f294a981c973bffbdd3eccabfe796b6a.
The change broke Chrome for Android because non-vanilla protobuf-lite
Java files were generated.
Original review:
https://codereview.chromium.org/11228038/
TBR=phajdan.jr
BUG=160256
Review URL: https://codereview.chromium.org/11359146
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167242 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus')
-rw-r--r-- | dbus/test_proto.proto | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dbus/test_proto.proto b/dbus/test_proto.proto index 2f5c154..0a1d06f 100644 --- a/dbus/test_proto.proto +++ b/dbus/test_proto.proto @@ -2,10 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +option optimize_for = LITE_RUNTIME; + // This is a simple dummy protocol buffer that is used for testing handling of // protocol buffers in MessageReader and MessageWriter. message TestProto { optional string text = 1; optional int32 number = 2; -} +}
\ No newline at end of file |