Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Side by Side Diff: DEPS

Issue 2540863005: Add DEPS and minimal build configuration for Capstone disassembler. (Closed)
Patch Set: Merge ToT, address Seb's comment. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | third_party/capstone/capstone.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | third_party/capstone/capstone.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698