Overview
| Comment: | [build] remove building process for Addon-SDK (obsolete) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | build | FixWebext |
| Files: | files | file ages | folders |
| SHA3-256: |
a59d5cef9049b0253a1357ece1367ba6 |
| User & Date: | olr on 2017-10-28 08:02:09 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-10-28
| ||
| 08:04 | [build] remove building process for Addon-SDK (obsolete) check-in: 5b4c329a42 user: olr tags: build, FixWebext | |
| 08:02 | [build] remove building process for Addon-SDK (obsolete) check-in: a59d5cef90 user: olr tags: build, FixWebext | |
| 07:56 | [fx] button will disappear only when closing manually the menu check-in: 46027d61ee user: olr tags: fx, FixWebext | |
Changes
Modified make.py from [1769780386] to [ccd63c6d40].
| ︙ | |||
284 285 286 287 288 289 290 | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | - + |
xParser.add_argument("-bb", "--build_data_before", help="launch build_data.py (only part 1: before dictionary building)", action="store_true")
xParser.add_argument("-ba", "--build_data_after", help="launch build_data.py (only part 2: before dictionary building)", action="store_true")
xParser.add_argument("-d", "--dict", help="generate FSA dictionary", action="store_true")
xParser.add_argument("-t", "--tests", help="run unit tests", action="store_true")
xParser.add_argument("-p", "--perf", help="run performance tests", action="store_true")
xParser.add_argument("-pm", "--perf_memo", help="run performance tests and store results in perf_memo.txt", action="store_true")
xParser.add_argument("-js", "--javascript", help="JavaScript build for Firefox", action="store_true")
|
| ︙ | |||
345 346 347 348 349 350 351 | 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | - + + - + |
xTestSuite = unittest.TestLoader().loadTestsFromModule(tests)
unittest.TextTestRunner().run(xTestSuite)
if xArgs.perf or xArgs.perf_memo:
hDst = open("./gc_lang/"+sLang+"/perf_memo.txt", "a", encoding="utf-8", newline="\n") if xArgs.perf_memo else None
tests.perf(sVersion, hDst)
# Firefox
|