You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_tools/third_party/protobuf26
sergiyb@chromium.org 67ac65cf1c Renamed google.protobuf to protobuf26
R=pgervais@chromium.org

Review URL: https://codereview.chromium.org/1162993005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295512 0039d316-1c4b-4281-b951-d872f2087c98
10 years ago
..
compiler Renamed google.protobuf to protobuf26 10 years ago
internal Renamed google.protobuf to protobuf26 10 years ago
README.chromium Renamed google.protobuf to protobuf26 10 years ago
__init__.py Renamed google.protobuf to protobuf26 10 years ago
descriptor.py Renamed google.protobuf to protobuf26 10 years ago
descriptor_database.py Renamed google.protobuf to protobuf26 10 years ago
descriptor_pb2.py Renamed google.protobuf to protobuf26 10 years ago
descriptor_pool.py Renamed google.protobuf to protobuf26 10 years ago
message.py Renamed google.protobuf to protobuf26 10 years ago
message_factory.py Renamed google.protobuf to protobuf26 10 years ago
reflection.py Renamed google.protobuf to protobuf26 10 years ago
service.py Renamed google.protobuf to protobuf26 10 years ago
service_reflection.py Renamed google.protobuf to protobuf26 10 years ago
symbol_database.py Renamed google.protobuf to protobuf26 10 years ago
text_encoding.py Renamed google.protobuf to protobuf26 10 years ago
text_format.py Renamed google.protobuf to protobuf26 10 years ago

README.chromium

This directory contains google.protobuf module version 2.6.0 build 0.

sergiyb@: It has been manually renamed to protobuf26. This is needed to avoid
conflicts with a built-in google.protobuf module found on many developer
machines. The long-term solution to this problem, however, should be virtualenv.
Unfortunately due to limited time and lack of experience, it was not a
reasonable short-term solution.

If you need to update this package, please make sure that you replace all
the references to google.protobuf in the package itself with protobuf26, e.g.

  from google.protobuf import text_format
  import google.protobuf

becomes

  from protobuf26 import text_format
  import protobuf26

Bug tracking setting up virtualenv for depot_tools is https://crbug.com/496241.