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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 { | 600 { |
601 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 601 # Update LASTCHANGE.blink. This is also run by export_tarball.py in |
602 # src/tools/export_tarball - please keep them in sync. | 602 # src/tools/export_tarball - please keep them in sync. |
603 "name": "lastchange", | 603 "name": "lastchange", |
604 "pattern": ".", | 604 "pattern": ".", |
605 "action": ["python", "src/build/util/lastchange.py", | 605 "action": ["python", "src/build/util/lastchange.py", |
606 "-s", "src/third_party/WebKit", | 606 "-s", "src/third_party/WebKit", |
607 "-o", "src/build/util/LASTCHANGE.blink"], | 607 "-o", "src/build/util/LASTCHANGE.blink"], |
608 }, | 608 }, |
609 { | 609 { |
| 610 # Pull GN binaries. This needs to be before running GYP below. |
| 611 "name": "gn", |
| 612 "pattern": "\\.sha1$", |
| 613 "action": [ "download_from_google_storage", |
| 614 "--directory", |
| 615 "--recursive", |
| 616 "--bucket", "chromium-gn", |
| 617 "src/tools/gn/bin", |
| 618 ], |
| 619 }, |
| 620 { |
610 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 621 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
611 "name": "gyp", | 622 "name": "gyp", |
612 "pattern": ".", | 623 "pattern": ".", |
613 "action": ["python", "src/build/gyp_chromium"], | 624 "action": ["python", "src/build/gyp_chromium"], |
614 }, | 625 }, |
615 { | 626 { |
616 # Check for landmines (reasons to clobber the build). | 627 # Check for landmines (reasons to clobber the build). |
617 "name": "landmines", | 628 "name": "landmines", |
618 "pattern": ".", | 629 "pattern": ".", |
619 "action": ["python", "src/build/landmines.py"], | 630 "action": ["python", "src/build/landmines.py"], |
620 }, | 631 }, |
621 ] | 632 ] |
OLD | NEW |