aboutsummaryrefslogtreecommitdiff
path: root/cpp/README
AgeCommit message (Collapse)Author
2014-09-03Updated README files.Fredrik Roubert
Moved information about the mailing list to the top-level README.md, and added a java/README with instructions for how to build the library and run the tests (both using Android and Java SE).
2014-09-01Point to the new location of RE2 library.Rouslan Solomakhin
The http://packages.debian.org/experimental/libre2-dev URL is no longer valid. You now can get the RE2 library from: http://packages.ubuntu.com/utopic/libre2-dev. TBR=roubert@google.com Review URL: https://codereview.appspot.com/103910045
2014-09-01Add a link to a discussion group to README.Rouslan Solomakhin
2014-09-01Update re2.gyp to work when building outside of Chromium.Fredrik Roubert
The variable "component" is not going to be defined when building libaddressinput following the instructions in README, so it's not permissible to test the value of this variable. Instead, add a requirement for at least version 20140111+dfsg-1 of the RE2 package (which will be needed for the set_never_capture() option, to be used by rule.cc, anyway), and then the package also provides a shared library so that it becomes possible to specify linking with libre2 using a normal "-lre2" linker directive.
2014-09-01Add re2 dependency to libaddressinput.Fredrik Roubert
This patch adds the re2 dependency to libaddressinput. The dependency will be used to validate postal code format of addresses. The addresses are provided by the user. The format regular expressions are from: https://i18napis.appspot.com/ssl-address For example, the US postal code has the following regular expression: \\d{5}([ \\-]\\d{4})? BUG=327046 Review URL: https://codereview.chromium.org/98543010
2014-09-01[cpp] GRIT messagesRouslan Solomakhin
This patch is part of a series of patches that enable showing an address input form. This patch adds a GRIT dependency and messages. The messages come from: https://code.google.com/p/libaddressinput/source/browse/trunk/java/res/values/address_strings.xml?r=124
2014-09-01Add postbuilds for Mac OS X to set dylib path relative to executable.Fredrik Roubert
To make it possible to execute the unit tests directly from the build directory, without having to first set DYLD_LIBRARY_PATH or install the library, install_name_tool is executed in a postbuilds step to set the path to the library to be relative to the unit test executable (so that also the library will be loaded directly from the build directory).
2014-09-01Update README information about specifying file system paths.Fredrik Roubert
2014-09-01Boilerplate README and GYP file for C++ portRouslan Solomakhin
This is the boilerplate of the C++ port of the library. The configuration file is able to build an empty unit test binary. There're 3 dependencies: GYP: Generates the build files. Ninja: Executes the build files. GTest: Used for unit tests.