aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/singlejar/options.cc
Commit message (Collapse)AuthorAge
* Adjust the singlejar binary to accept an optional comma-separated "label" withGravatar Googler2017-10-27
| | | | | | | each entry in the --outputs flag. RELNOTES: n/a PiperOrigin-RevId: 173547248
* add option to singlejar to double-check correct default and static interface ↵Gravatar kmb2017-10-12
| | | | | | | | method desugaring for Android. RELNOTES: none PiperOrigin-RevId: 171891682
* Implement --nocompress_suffixes option.Gravatar Sasha Smundak2016-09-26
| | | | | | | The planned replacement of the ApkBuilder with singlejar uses it. -- MOS_MIGRATED_REVID=134290339
* Fix Options::ParseCommandLine signature.Gravatar Sasha Smundak2016-07-29
| | | | | | | | | | | | | | Otherwise the following code: int main(int argc, char *argv[]) { options.ParseCommandLine(argc-11, argv+1); ... } does not compile ("cannot convert from ‘char**’ to ‘const char**’") -- MOS_MIGRATED_REVID=128803427
* Command line options processing.Gravatar Sasha Smundak2016-07-20
-- MOS_MIGRATED_REVID=127924233