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://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
548 "delegate_execute", | 548 "delegate_execute", |
549 "metro_driver", | 549 "metro_driver", |
550 "native_client_sdk", | 550 "native_client_sdk", |
551 "o3d", | 551 "o3d", |
552 "pdf", | 552 "pdf", |
553 "sdch", | 553 "sdch", |
554 "skia", | 554 "skia", |
555 "testing", | 555 "testing", |
556 "third_party", | 556 "third_party", |
557 "v8", | 557 "v8", |
558 # TODO(tomfinegan): This is here to suppress a presubmit failure caused by | |
559 # pulling ppapi includes into content_decryptor.cc in | |
560 # src/webkit/media/crypto. 1) I think this is wrong, at least in the blanket | |
561 # disabling of checks in crypto, and 2) I need to figure out how to do it | |
562 # correctly (if indeed what I've done is not the correct way of going about | |
563 # making the DEPS change). | |
564 "webkit/media/crypto", | |
dmichael (off chromium)
2012/08/08 03:38:10
This is really heavy-handed. You should instead tw
Tom Finegan
2012/08/08 19:02:15
Done; created DEPS in webkit/media/crypto
| |
558 ] | 565 ] |
559 | 566 |
560 | 567 |
561 hooks = [ | 568 hooks = [ |
562 { | 569 { |
563 # This downloads binaries for Native Client's newlib toolchain. | 570 # This downloads binaries for Native Client's newlib toolchain. |
564 # Done in lieu of building the toolchain from scratch as it can take | 571 # Done in lieu of building the toolchain from scratch as it can take |
565 # anywhere from 30 minutes to 4 hours depending on platform to build. | 572 # anywhere from 30 minutes to 4 hours depending on platform to build. |
566 "pattern": ".", | 573 "pattern": ".", |
567 "action": [ | 574 "action": [ |
(...skipping 23 matching lines...) Expand all Loading... | |
591 "pattern": ".", | 598 "pattern": ".", |
592 "action": ["python", "src/build/util/lastchange.py", | 599 "action": ["python", "src/build/util/lastchange.py", |
593 "-o", "src/build/util/LASTCHANGE"], | 600 "-o", "src/build/util/LASTCHANGE"], |
594 }, | 601 }, |
595 { | 602 { |
596 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 603 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
597 "pattern": ".", | 604 "pattern": ".", |
598 "action": ["python", "src/build/gyp_chromium"], | 605 "action": ["python", "src/build/gyp_chromium"], |
599 }, | 606 }, |
600 ] | 607 ] |
OLD | NEW |