OLD | NEW |
1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
3 | 3 |
4 vars = { | 4 vars = { |
5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", | 8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
9 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 "src/media/cdm/ppapi/api": None, | 339 "src/media/cdm/ppapi/api": None, |
340 "src/native_client": None, | 340 "src/native_client": None, |
341 "src/native_client/src/third_party/ppapi": None, | 341 "src/native_client/src/third_party/ppapi": None, |
342 "src/third_party/angle_dx11": None, | 342 "src/third_party/angle_dx11": None, |
343 "src/third_party/cld_2/src": None, | 343 "src/third_party/cld_2/src": None, |
344 "src/third_party/bidichecker": None, | 344 "src/third_party/bidichecker": None, |
345 "src/third_party/webgl_conformance": None, | 345 "src/third_party/webgl_conformance": None, |
346 "src/third_party/ffmpeg": None, | 346 "src/third_party/ffmpeg": None, |
347 "src/third_party/hunspell_dictionaries": None, | 347 "src/third_party/hunspell_dictionaries": None, |
348 "src/third_party/hunspell": None, | 348 "src/third_party/hunspell": None, |
349 "src/third_party/leveldatabase/src": None, | |
350 "src/third_party/libexif/sources": None, | 349 "src/third_party/libexif/sources": None, |
351 "src/third_party/libjpeg_turbo": None, | 350 "src/third_party/libjpeg_turbo": None, |
352 "src/third_party/libsrtp": None, | 351 "src/third_party/libsrtp": None, |
353 "src/third_party/usrsctp/usrsctplib": None, | 352 "src/third_party/usrsctp/usrsctplib": None, |
354 "src/third_party/libvpx": None, | 353 "src/third_party/libvpx": None, |
355 "src/third_party/libyuv": None, | 354 "src/third_party/libyuv": None, |
356 "src/third_party/mesa/src": None, | 355 "src/third_party/mesa/src": None, |
357 "src/third_party/opus/src": None, | 356 "src/third_party/opus/src": None, |
358 "src/third_party/openmax_dl": None, | 357 "src/third_party/openmax_dl": None, |
359 "src/third_party/ots": None, | 358 "src/third_party/ots": None, |
360 "src/third_party/pymox/src": None, | 359 "src/third_party/pymox/src": None, |
361 "src/third_party/safe_browsing/testing": None, | 360 "src/third_party/safe_browsing/testing": None, |
362 "src/third_party/scons-2.0.1": None, | 361 "src/third_party/scons-2.0.1": None, |
363 "src/third_party/sfntly/cpp/src": None, | 362 "src/third_party/sfntly/cpp/src": None, |
364 "src/third_party/smhasher/src": None, | 363 "src/third_party/smhasher/src": None, |
365 "src/third_party/snappy/src": None, | |
366 "src/third_party/swig/Lib": None, | 364 "src/third_party/swig/Lib": None, |
367 "src/third_party/undoview": None, | 365 "src/third_party/undoview": None, |
368 "src/third_party/v8-i18n": None, | 366 "src/third_party/v8-i18n": None, |
369 "src/third_party/webdriver/pylib": None, | 367 "src/third_party/webdriver/pylib": None, |
370 "src/third_party/webpagereplay": None, | 368 "src/third_party/webpagereplay": None, |
371 "src/third_party/webrtc": None, | 369 "src/third_party/webrtc": None, |
372 "src/third_party/yasm/source/patched-yasm": None, | 370 "src/third_party/yasm/source/patched-yasm": None, |
373 "src/tools/page_cycler/acid3": None, | 371 "src/tools/page_cycler/acid3": None, |
374 "src/v8": None, | 372 "src/v8": None, |
375 }, | 373 }, |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 "pattern": ".", | 614 "pattern": ".", |
617 "action": ["python", "src/build/gyp_chromium"], | 615 "action": ["python", "src/build/gyp_chromium"], |
618 }, | 616 }, |
619 { | 617 { |
620 # Check for landmines (reasons to clobber the build). | 618 # Check for landmines (reasons to clobber the build). |
621 "name": "landmines", | 619 "name": "landmines", |
622 "pattern": ".", | 620 "pattern": ".", |
623 "action": ["python", "src/build/landmines.py"], | 621 "action": ["python", "src/build/landmines.py"], |
624 }, | 622 }, |
625 ] | 623 ] |
OLD | NEW |