| OLD | NEW |
| 1 # Copyright 2014 Google Inc. All Rights Reserved. | 1 # Copyright 2014 Google Inc. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "src/tools/clang": | 63 "src/tools/clang": |
| 64 Var("chromium_git") + "chromium/src/tools/clang@33c2e41", | 64 Var("chromium_git") + "chromium/src/tools/clang@33c2e41", |
| 65 | 65 |
| 66 # This brings in Crashpad, used by SyzyASan for crash reporting. | 66 # This brings in Crashpad, used by SyzyASan for crash reporting. |
| 67 "src/third_party/crashpad/files": | 67 "src/third_party/crashpad/files": |
| 68 "https://chromium.googlesource.com/crashpad/crashpad@35da3b6735", | 68 "https://chromium.googlesource.com/crashpad/crashpad@35da3b6735", |
| 69 | 69 |
| 70 # Brings in the open-source Microsoft cvinfo.h file. | 70 # Brings in the open-source Microsoft cvinfo.h file. |
| 71 "src/third_party/microsoft-pdb": | 71 "src/third_party/microsoft-pdb": |
| 72 "https://github.com/Microsoft/microsoft-pdb.git@082c529", | 72 "https://github.com/Microsoft/microsoft-pdb.git@082c529", |
| 73 |
| 74 # Capstone is the ultimate disassembler library. |
| 75 "src/third_party/capstone/files": |
| 76 "https://github.com/aquynh/capstone.git@1b585c1", |
| 73 } | 77 } |
| 74 | 78 |
| 75 | 79 |
| 76 include_rules = [ | 80 include_rules = [ |
| 77 # Everybody can use some things. | 81 # Everybody can use some things. |
| 78 "+base", | 82 "+base", |
| 79 "+build", | 83 "+build", |
| 80 ] | 84 ] |
| 81 | 85 |
| 82 hooks = [ | 86 hooks = [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "name": "syzygy-binaries", | 159 "name": "syzygy-binaries", |
| 156 "pattern": ".", | 160 "pattern": ".", |
| 157 "action": [Var("python_path"), | 161 "action": [Var("python_path"), |
| 158 "src/syzygy/build/get_syzygy_binaries.py", | 162 "src/syzygy/build/get_syzygy_binaries.py", |
| 159 "--output-dir=src/syzygy/binaries", | 163 "--output-dir=src/syzygy/binaries", |
| 160 "--revision=0645c685e783c6787acb8f6e1dade4f916605fc1", | 164 "--revision=0645c685e783c6787acb8f6e1dade4f916605fc1", |
| 161 "--overwrite", | 165 "--overwrite", |
| 162 ], | 166 ], |
| 163 }, | 167 }, |
| 164 ] | 168 ] |
| OLD | NEW |