| 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 "tryserver.client.pdfium", | 8 "tryserver.client.pdfium", |
| 9 "--builder", | 9 "--builder", |
| 10 "linux_xfa_asan", | 10 "linux_xfa_asan", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 }, | 54 }, |
| 55 { | 55 { |
| 56 "cmd": [ | 56 "cmd": [ |
| 57 "python", | 57 "python", |
| 58 "-u", | 58 "-u", |
| 59 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 59 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 60 "runhooks" | 60 "runhooks" |
| 61 ], | 61 ], |
| 62 "cwd": "[SLAVE_BUILD]/pdfium", | 62 "cwd": "[SLAVE_BUILD]/pdfium", |
| 63 "env": { | 63 "env": { |
| 64 "GYP_DEFINES": "pdf_enable_v8=1 pdf_enable_xfa=0", | 64 "GYP_PDFIUM_NO_ACTION": "1", |
| 65 "GYP_DEFINES": "pdf_enable_v8=1 pdf_enable_xfa=1 asan=1", |
| 65 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 66 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 66 }, | 67 }, |
| 67 "name": "gclient runhooks" | 68 "name": "gclient runhooks" |
| 68 }, | 69 }, |
| 69 { | 70 { |
| 70 "cmd": [ | 71 "cmd": [ |
| 72 "python", |
| 73 "-u", |
| 74 "[DEPOT_TOOLS]/gn.py", |
| 75 "--root=[SLAVE_BUILD]/pdfium", |
| 76 "gen", |
| 77 "//out/Debug", |
| 78 "--args=is_debug=true pdf_enable_v8=true pdf_enable_xfa=true pdf_use_skia=
false pdf_is_standalone=true is_asan=true" |
| 79 ], |
| 80 "cwd": "[SLAVE_BUILD]/pdfium", |
| 81 "name": "gn gen" |
| 82 }, |
| 83 { |
| 84 "cmd": [ |
| 71 "ninja", | 85 "ninja", |
| 72 "-C", | 86 "-C", |
| 73 "[SLAVE_BUILD]/pdfium/out/Debug" | 87 "[SLAVE_BUILD]/pdfium/out/Debug" |
| 74 ], | 88 ], |
| 75 "name": "compile with ninja" | 89 "name": "compile with ninja" |
| 76 }, | 90 }, |
| 77 { | 91 { |
| 78 "cmd": [ | 92 "cmd": [ |
| 79 "[SLAVE_BUILD]/pdfium/out/Debug/pdfium_unittests" | 93 "[SLAVE_BUILD]/pdfium/out/Debug/pdfium_unittests" |
| 80 ], | 94 ], |
| 81 "cwd": "[SLAVE_BUILD]/pdfium", | 95 "cwd": "[SLAVE_BUILD]/pdfium", |
| 96 "env": { |
| 97 "ASAN_OPTIONS": "detect_leaks=0:allocator_may_return_null=1" |
| 98 }, |
| 82 "name": "unittests" | 99 "name": "unittests" |
| 83 }, | 100 }, |
| 84 { | 101 { |
| 85 "cmd": [ | 102 "cmd": [ |
| 86 "[SLAVE_BUILD]/pdfium/out/Debug/pdfium_embeddertests" | 103 "[SLAVE_BUILD]/pdfium/out/Debug/pdfium_embeddertests" |
| 87 ], | 104 ], |
| 88 "cwd": "[SLAVE_BUILD]/pdfium", | 105 "cwd": "[SLAVE_BUILD]/pdfium", |
| 106 "env": { |
| 107 "ASAN_OPTIONS": "detect_leaks=0:allocator_may_return_null=1" |
| 108 }, |
| 89 "name": "embeddertests" | 109 "name": "embeddertests" |
| 90 }, | 110 }, |
| 91 { | 111 { |
| 92 "cmd": [ | 112 "cmd": [ |
| 93 "python", | 113 "python", |
| 94 "-u", | 114 "-u", |
| 95 "[SLAVE_BUILD]/pdfium/testing/tools/run_javascript_tests.py", | 115 "[SLAVE_BUILD]/pdfium/testing/tools/run_javascript_tests.py", |
| 96 "--build-dir", | 116 "--build-dir", |
| 97 "out/Debug" | 117 "out/Debug" |
| 98 ], | 118 ], |
| 99 "cwd": "[SLAVE_BUILD]/pdfium", | 119 "cwd": "[SLAVE_BUILD]/pdfium", |
| 120 "env": { |
| 121 "ASAN_OPTIONS": "detect_leaks=0:allocator_may_return_null=1" |
| 122 }, |
| 100 "name": "javascript tests" | 123 "name": "javascript tests" |
| 101 }, | 124 }, |
| 102 { | 125 { |
| 103 "cmd": [ | 126 "cmd": [ |
| 104 "python", | 127 "python", |
| 105 "-u", | 128 "-u", |
| 106 "[SLAVE_BUILD]/pdfium/testing/tools/run_pixel_tests.py", | 129 "[SLAVE_BUILD]/pdfium/testing/tools/run_pixel_tests.py", |
| 107 "--build-dir", | 130 "--build-dir", |
| 108 "out/Debug" | 131 "out/Debug" |
| 109 ], | 132 ], |
| 110 "cwd": "[SLAVE_BUILD]/pdfium", | 133 "cwd": "[SLAVE_BUILD]/pdfium", |
| 134 "env": { |
| 135 "ASAN_OPTIONS": "detect_leaks=0:allocator_may_return_null=1" |
| 136 }, |
| 111 "name": "pixel tests" | 137 "name": "pixel tests" |
| 112 }, | 138 }, |
| 113 { | 139 { |
| 114 "cmd": [ | 140 "cmd": [ |
| 115 "python", | 141 "python", |
| 116 "-u", | 142 "-u", |
| 117 "[SLAVE_BUILD]/pdfium/testing/tools/run_corpus_tests.py", | 143 "[SLAVE_BUILD]/pdfium/testing/tools/run_corpus_tests.py", |
| 118 "--build-dir", | 144 "--build-dir", |
| 119 "out/Debug" | 145 "out/Debug" |
| 120 ], | 146 ], |
| 121 "cwd": "[SLAVE_BUILD]/pdfium", | 147 "cwd": "[SLAVE_BUILD]/pdfium", |
| 148 "env": { |
| 149 "ASAN_OPTIONS": "detect_leaks=0:allocator_may_return_null=1" |
| 150 }, |
| 122 "name": "corpus tests" | 151 "name": "corpus tests" |
| 123 }, | 152 }, |
| 124 { | 153 { |
| 125 "name": "$result", | 154 "name": "$result", |
| 126 "recipe_result": null, | 155 "recipe_result": null, |
| 127 "status_code": 0 | 156 "status_code": 0 |
| 128 } | 157 } |
| 129 ] | 158 ] |
| OLD | NEW |