| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "client.pdfium", | 8 "client.pdfium", |
| 9 "--builder", | 9 "--builder", |
| 10 "linux_xfa", | 10 "linux_xfa", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 }, | 48 }, |
| 49 { | 49 { |
| 50 "cmd": [ | 50 "cmd": [ |
| 51 "python", | 51 "python", |
| 52 "-u", | 52 "-u", |
| 53 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 53 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 54 "runhooks" | 54 "runhooks" |
| 55 ], | 55 ], |
| 56 "cwd": "[SLAVE_BUILD]/pdfium", | 56 "cwd": "[SLAVE_BUILD]/pdfium", |
| 57 "env": { | 57 "env": { |
| 58 "GYP_PDFIUM_NO_ACTION": "1", |
| 58 "GYP_DEFINES": "pdf_enable_v8=1 pdf_enable_xfa=1", | 59 "GYP_DEFINES": "pdf_enable_v8=1 pdf_enable_xfa=1", |
| 59 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 60 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 60 }, | 61 }, |
| 61 "name": "gclient runhooks" | 62 "name": "gclient runhooks" |
| 62 }, | 63 }, |
| 63 { | 64 { |
| 64 "cmd": [ | 65 "cmd": [ |
| 66 "python", |
| 67 "-u", |
| 68 "[DEPOT_TOOLS]/gn.py", |
| 69 "--root=[SLAVE_BUILD]/pdfium", |
| 70 "gen", |
| 71 "//out/Debug", |
| 72 "--args=is_debug=true pdf_enable_v8=true pdf_enable_xfa=true pdf_use_skia=
false pdf_is_standalone=true" |
| 73 ], |
| 74 "cwd": "[SLAVE_BUILD]/pdfium", |
| 75 "name": "gn gen" |
| 76 }, |
| 77 { |
| 78 "cmd": [ |
| 65 "ninja", | 79 "ninja", |
| 66 "-C", | 80 "-C", |
| 67 "[SLAVE_BUILD]/pdfium/out/Debug" | 81 "[SLAVE_BUILD]/pdfium/out/Debug" |
| 68 ], | 82 ], |
| 69 "name": "compile with ninja" | 83 "name": "compile with ninja" |
| 70 }, | 84 }, |
| 71 { | 85 { |
| 72 "cmd": [ | 86 "cmd": [ |
| 73 "[SLAVE_BUILD]/pdfium/out/Debug/pdfium_unittests" | 87 "[SLAVE_BUILD]/pdfium/out/Debug/pdfium_unittests" |
| 74 ], | 88 ], |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "out/Debug" | 127 "out/Debug" |
| 114 ], | 128 ], |
| 115 "cwd": "[SLAVE_BUILD]/pdfium", | 129 "cwd": "[SLAVE_BUILD]/pdfium", |
| 116 "name": "corpus tests" | 130 "name": "corpus tests" |
| 117 }, | 131 }, |
| 118 { | 132 { |
| 119 "name": "$result", | 133 "name": "$result", |
| 120 "recipe_result": null, | 134 "recipe_result": null, |
| 121 "status_code": 0 | 135 "status_code": 0 |
| 122 } | 136 } |
| 123 ] | 137 ] |
| OLD | NEW |