Home | History | Annotate | Download | only in gyp

Lines Matching refs:parser

120   parser = optparse.OptionParser()
121 parser.add_option('--lint-path', help='Path to lint executable.')
122 parser.add_option('--config-path', help='Path to lint suppressions file.')
123 parser.add_option('--processed-config-path',
125 parser.add_option('--manifest-path', help='Path to AndroidManifest.xml')
126 parser.add_option('--result-path', help='Path to XML lint result file.')
127 parser.add_option('--product-dir', help='Path to product dir.')
128 parser.add_option('--src-dirs', help='Directories containing java files.')
129 parser.add_option('--classes-dir', help='Directory containing class files.')
130 parser.add_option('--stamp', help='Path to touch on success.')
131 parser.add_option('--enable', action='store_true',
134 options, _ = parser.parse_args()
137 options, parser, required=['lint_path', 'config_path',