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

Side by Side Diff: DEPS

Issue 1885093004: [libfuzzer] fetch libfuzzer on mac and register it in build root. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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 | « BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is used to manage the dependencies of the Chromium src repo. It is 1 # This file is used to manage the dependencies of the Chromium src repo. It is
2 # used by gclient to determine what version of each dependency to check out, and 2 # used by gclient to determine what version of each dependency to check out, and
3 # where. 3 # where.
4 # 4 #
5 # For more information, please refer to the official documentation: 5 # For more information, please refer to the official documentation:
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code
7 # 7 #
8 # When adding a new dependency, please update the top-level .gitignore file 8 # When adding a new dependency, please update the top-level .gitignore file
9 # to list the dependency's destination directory. 9 # to list the dependency's destination directory.
10 # 10 #
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 275
276 'src/third_party/catapult': 276 'src/third_party/catapult':
277 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' + '@' + 277 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' + '@' +
278 Var('catapult_revision'), 278 Var('catapult_revision'),
279 279
280 'src/third_party/openh264/src': 280 'src/third_party/openh264/src':
281 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2 48234162033e3e11b0335f3131cdfe488', 281 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2 48234162033e3e11b0335f3131cdfe488',
282 282
283 'src/third_party/re2/src': 283 'src/third_party/re2/src':
284 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349 aba83b5588e85e5ecf2b56c97f2d259b7', 284 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349 aba83b5588e85e5ecf2b56c97f2d259b7',
285
286 # Used for building libFuzzers (only supports Linux).
Dirk Pranke 2016/04/14 23:20:38 the "only supports linux" part is no longer accura
Oliver Chang 2016/04/14 23:30:22 remove "(only supports Linux)" ?
287 'src/third_party/libFuzzer/src':
288 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' + Var('libfuzzer_revision'),
285 } 289 }
286 290
287 291
288 deps_os = { 292 deps_os = {
289 'win': { 293 'win': {
290 'src/third_party/cygwin': 294 'src/third_party/cygwin':
291 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa df3a10ff1007a97c0b7de6df', 295 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa df3a10ff1007a97c0b7de6df',
292 296
293 'src/third_party/psyco_win32': 297 'src/third_party/psyco_win32':
294 Var('chromium_git') + '/chromium/deps/psyco_win32.git' + '@' + 'f5af9f6910e e5a8075bbaeed0591469f1661d868', 298 Var('chromium_git') + '/chromium/deps/psyco_win32.git' + '@' + 'f5af9f6910e e5a8075bbaeed0591469f1661d868',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 'src/third_party/wayland/src': 431 'src/third_party/wayland/src':
428 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', 432 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b',
429 433
430 # Wayland protocols that add functionality not available in the core protoco l. 434 # Wayland protocols that add functionality not available in the core protoco l.
431 'src/third_party/wayland-protocols/src': 435 'src/third_party/wayland-protocols/src':
432 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan d-protocols.git' + '@' + '596dfda882a51c05699bcb28a8459ce936a138db', 436 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan d-protocols.git' + '@' + '596dfda882a51c05699bcb28a8459ce936a138db',
433 437
434 # Wireless Display Software. Used on Chrome OS. 438 # Wireless Display Software. Used on Chrome OS.
435 'src/third_party/wds/src': 439 'src/third_party/wds/src':
436 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'f187dda5fcc aad08e168dc6657109325f42c648e', 440 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'f187dda5fcc aad08e168dc6657109325f42c648e',
437
438 # Used for building libFuzzers (only supports Linux).
439 'src/third_party/libFuzzer/src':
440 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' + Var('libfuzzer_revision'),
441 }, 441 },
442 'android': { 442 'android': {
443 'src/third_party/android_protobuf/src': 443 'src/third_party/android_protobuf/src':
444 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7 2e97f7fe08bb756958a2cf090f4e7', 444 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7 2e97f7fe08bb756958a2cf090f4e7',
445 445
446 'src/third_party/android_tools': 446 'src/third_party/android_tools':
447 Var('chromium_git') + '/android_tools.git' + '@' + 'adfd31794011488cd0fc716 b53558b2d8a67af8b', 447 Var('chromium_git') + '/android_tools.git' + '@' + 'adfd31794011488cd0fc716 b53558b2d8a67af8b',
448 448
449 'src/third_party/apache-mime4j': 449 'src/third_party/apache-mime4j':
450 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b ff4b6cf0a2e86ff58b3d025934ebe3a', 450 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b ff4b6cf0a2e86ff58b3d025934ebe3a',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 'pattern': '\\.sha1', 853 'pattern': '\\.sha1',
854 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'], 854 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'],
855 }, 855 },
856 { 856 {
857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 857 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
858 'name': 'gyp', 858 'name': 'gyp',
859 'pattern': '.', 859 'pattern': '.',
860 'action': ['python', 'src/build/gyp_chromium'], 860 'action': ['python', 'src/build/gyp_chromium'],
861 }, 861 },
862 ] 862 ]
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698