Home | History | Annotate | only in /external/protobuf
Up to higher level directory
NameDateSize
aclocal.m421-Aug-201842.8K
android/21-Aug-2018
Android.bp21-Aug-201823.6K
Android.mk21-Aug-20183.4K
appveyor.bat21-Aug-2018809
appveyor.yml21-Aug-2018773
autogen.sh21-Aug-20181.1K
benchmarks/21-Aug-2018
BUILD21-Aug-201826.3K
build.gradle21-Aug-20184.5K
CHANGES.txt21-Aug-201853.6K
CleanSpec.mk21-Aug-20182.2K
cmake/21-Aug-2018
compile21-Aug-20187.2K
config/21-Aug-2018
config.guess21-Aug-201844.2K
config.h.in21-Aug-20183.7K
config.sub21-Aug-201834.7K
configure21-Aug-2018591.4K
configure.ac21-Aug-20185.9K
conformance/21-Aug-2018
CONTRIBUTORS.txt21-Aug-20183.8K
csharp/21-Aug-2018
depcomp21-Aug-201823K
docs/21-Aug-2018
editors/21-Aug-2018
examples/21-Aug-2018
generate_descriptor_proto.sh21-Aug-20183.1K
gmock.BUILD21-Aug-2018661
gtest/21-Aug-2018
install-sh21-Aug-201813.7K
INSTALL.txt21-Aug-20189.3K
java/21-Aug-2018
javamicro/21-Aug-2018
javanano/21-Aug-2018
jenkins/21-Aug-2018
js/21-Aug-2018
LICENSE21-Aug-20182.1K
ltmain.sh21-Aug-2018277K
m4/21-Aug-2018
Makefile.am21-Aug-201854.2K
Makefile.in21-Aug-201845.5K
missing21-Aug-20186.7K
MODULE_LICENSE_APACHE221-Aug-20180
more_tests/21-Aug-2018
NOTICE21-Aug-20181.7K
objectivec/21-Aug-2018
php/21-Aug-2018
post_process_dist.sh21-Aug-20181.8K
protobuf-lite.pc.in21-Aug-2018298
protobuf.bzl21-Aug-20188.6K
protobuf.pc.in21-Aug-2018319
Protobuf.podspec21-Aug-20182.1K
protoc-artifacts/21-Aug-2018
python/21-Aug-2018
README.android21-Aug-20181.2K
README.md21-Aug-20183.7K
README.version21-Aug-2018111
ruby/21-Aug-2018
six.BUILD21-Aug-2018227
src/21-Aug-2018
test-driver21-Aug-20184.2K
tests.sh21-Aug-20189.4K
update_file_lists.sh21-Aug-20185.9K
util/21-Aug-2018
WORKSPACE21-Aug-20181.1K

README.android

      1 URL: http://code.google.com/p/protobuf/downloads/list
      2 Version: v3.0.0-beta3
      3 License: Google BSD like
      4 Description: "Protobuf: The Google protobuf compiler and runtimes for various languages"
      5 
      6 Local changes:
      7 
      8 Local Modifications:
      9  - Initial changes include support for the micro protobuf compiler and the
     10    assoicated runtime.
     11  - https://github.com/google/protobuf/pull/2732: const FieldDescriptorCompare
     12 
     13 Protocol Buffers are a way of encoding structured data in an efficient
     14 yet extensible format. Google uses Protocol Buffers for almost all
     15 of its internal RPC protocols and file formats.
     16 
     17 Initially the protoc compiler is not integrated into the Android build system
     18 and the Android.mk will simply build the javamicro runtime static library.
     19 
     20 To build the compiler follow the instructions in README.txt for
     21 compiling and installing.
     22 
     23 The Android.mk file creates the a static library which can be added
     24 to any Android application by Adding to LOCAL_STATIC_JAVA_LIBRARIES
     25 com.google.protobuf.micro:
     26 
     27   LOCAL_STATIC_JAVA_LIBRARIES += com.google.protobuf.micro
     28 
     29 Follow the instructions in Micro section of java/README.txt for
     30 details on compiling .proto files for the micro runtine.
     31 

README.md

      1 Protocol Buffers - Google's data interchange format
      2 ===================================================
      3 
      4 [![Build Status](https://travis-ci.org/google/protobuf.svg?branch=master)](https://travis-ci.org/google/protobuf) [![Build status](https://ci.appveyor.com/api/projects/status/73ctee6ua4w2ruin?svg=true)](https://ci.appveyor.com/project/protobuf/protobuf)
      5 
      6 Copyright 2008 Google Inc.
      7 
      8 https://developers.google.com/protocol-buffers/
      9 
     10 Overview
     11 --------
     12 
     13 Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
     14 platform-neutral, extensible mechanism for serializing structured data. You
     15 can find [protobuf's documentation on the Google Developers site](https://developers.google.com/protocol-buffers/).
     16 
     17 This README file contains protobuf installation instructions. To install
     18 protobuf, you need to install the protocol compiler (used to compile .proto
     19 files) and the protobuf runtime for your chosen programming language.
     20 
     21 Protocol Compiler Installation
     22 ------------------------------
     23 
     24 The protocol compiler is written in C++. If you are using C++, please follow
     25 the [C++ Installation Instructions](src/README.md) to install protoc along
     26 with the C++ runtime.
     27 
     28 For non-C++ users, the simplest way to install the protocol compiler is to
     29 download a pre-built binary from our release page:
     30 
     31   [https://github.com/google/protobuf/releases](https://github.com/google/protobuf/releases)
     32 
     33 In the downloads section of each release, you can find pre-built binaries in
     34 zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary
     35 as well as a set of standard .proto files distributed along with protobuf.
     36 
     37 If you are looking for an old version that is not available in the release
     38 page, check out the maven repo here:
     39 
     40   [http://repo1.maven.org/maven2/com/google/protobuf/protoc/](http://repo1.maven.org/maven2/com/google/protobuf/protoc/)
     41 
     42 These pre-built binaries are only provided for released versions. If you want
     43 to use the github master version at HEAD, or you need to modify protobuf code,
     44 or you are using C++, it's recommended to build your own protoc binary from
     45 source.
     46 
     47 If you would like to build protoc binary from source, see the [C++ Installation
     48 Instructions](src/README.md).
     49 
     50 Protobuf Runtime Installation
     51 -----------------------------
     52 
     53 Protobuf supports several different programming languages. For each programming
     54 language, you can find instructions in the corresponding source directory about
     55 how to install protobuf runtime for that specific language:
     56 
     57 | Language                             | Source                                                |
     58 |--------------------------------------|-------------------------------------------------------|
     59 | C++ (include C++ runtime and protoc) | [src](src)                                            |
     60 | Java                                 | [java](java)                                          |
     61 | Python                               | [python](python)                                      |
     62 | Objective-C                          | [objectivec](objectivec)                              |
     63 | C#                                   | [csharp](csharp)                                      |
     64 | JavaNano                             | [javanano](javanano)                                  |
     65 | JavaScript                           | [js](js)                                              |
     66 | Ruby                                 | [ruby](ruby)                                          |
     67 | Go                                   | [golang/protobuf](https://github.com/golang/protobuf) |
     68 | PHP                                  | TBD                                                   |
     69 
     70 
     71 Usage
     72 -----
     73 
     74 The complete documentation for Protocol Buffers is available via the
     75 web at:
     76 
     77     https://developers.google.com/protocol-buffers/
     78 

README.version

      1 URL: https://github.com/google/protobuf/archive/v3.0.0-beta-3.tar.gz
      2 Version: v3.0.0-beta3
      3 BugComponent: 99142
      4