Chromium Code Reviews| Index: third_party/protobuf26/README.chromium |
| diff --git a/third_party/protobuf26/README.chromium b/third_party/protobuf26/README.chromium |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2032681e2d4e8e78375ea2701e291edbac3770a2 |
| --- /dev/null |
| +++ b/third_party/protobuf26/README.chromium |
| @@ -0,0 +1,18 @@ |
| +This directory contains google.protobuf module version 2.6.0 build 0. |
| + |
| +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 |
|
pgervais
2015/06/03 17:51:34
Please file a ticket to request a virtualenv in de
Sergiy Byelozyorov
2015/06/03 18:00:31
Done.
|