OLD | NEW |
1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
2 # that gclient uses under git. | 2 # that gclient uses under git. |
3 # | 3 # |
4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
5 # | 5 # |
6 # To test manually, run: | 6 # To test manually, run: |
7 # python tools/deps2git/deps2git.py -o .DEPS.git | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
8 # gclient runhooks | 8 # gclient runhooks |
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 }, | 639 }, |
640 { | 640 { |
641 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 641 # Update LASTCHANGE.blink. This is also run by export_tarball.py in |
642 # src/tools/export_tarball - please keep them in sync. | 642 # src/tools/export_tarball - please keep them in sync. |
643 "name": "lastchange", | 643 "name": "lastchange", |
644 "pattern": ".", | 644 "pattern": ".", |
645 "action": ["python", "src/build/util/lastchange.py", | 645 "action": ["python", "src/build/util/lastchange.py", |
646 "-s", "src/third_party/WebKit", | 646 "-s", "src/third_party/WebKit", |
647 "-o", "src/build/util/LASTCHANGE.blink"], | 647 "-o", "src/build/util/LASTCHANGE.blink"], |
648 }, | 648 }, |
| 649 # Pull node.js binaries. |
| 650 { |
| 651 "name": "nodejs_win", |
| 652 "pattern": "src/tools/nodejs/win/node.exe.sha1", |
| 653 "action": [ "download_from_google_storage", |
| 654 "--no_resume", |
| 655 "--platform=win32", |
| 656 "--no_auth", |
| 657 "--bucket", "chromium-nodejs", |
| 658 "-s", "src/tools/nodejs/win/node.exe.sha1", |
| 659 ], |
| 660 }, |
| 661 { |
| 662 "name": "nodejs_mac", |
| 663 "pattern": "src/tools/nodejs/mac/node.sha1", |
| 664 "action": [ "download_from_google_storage", |
| 665 "--no_resume", |
| 666 "--platform=darwin", |
| 667 "--no_auth", |
| 668 "--bucket", "chromium-nodejs", |
| 669 "-s", "src/tools/nodejs/mac/node.sha1", |
| 670 ], |
| 671 }, |
| 672 { |
| 673 "name": "nodejs_linux", |
| 674 "pattern": "src/tools/nodejs/linux/*.sha1", |
| 675 "action": [ "download_from_google_storage", |
| 676 "--no_resume", |
| 677 "--platform=linux*", |
| 678 "--no_auth", |
| 679 "--bucket", "chromium-nodejs", |
| 680 "--directory", "src/tools/nodejs/linux", |
| 681 ], |
| 682 }, |
649 # Pull GN binaries. This needs to be before running GYP below. | 683 # Pull GN binaries. This needs to be before running GYP below. |
650 { | 684 { |
651 "name": "gn_win", | 685 "name": "gn_win", |
652 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", | 686 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", |
653 "action": [ "download_from_google_storage", | 687 "action": [ "download_from_google_storage", |
654 "--no_resume", | 688 "--no_resume", |
655 "--platform=win32", | 689 "--platform=win32", |
656 "--no_auth", | 690 "--no_auth", |
657 "--bucket", "chromium-gn", | 691 "--bucket", "chromium-gn", |
658 "-s", "src/tools/gn/bin/win/gn.exe.sha1", | 692 "-s", "src/tools/gn/bin/win/gn.exe.sha1", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 "pattern": ".", | 731 "pattern": ".", |
698 "action": ["python", "src/build/gyp_chromium"], | 732 "action": ["python", "src/build/gyp_chromium"], |
699 }, | 733 }, |
700 { | 734 { |
701 # Check for landmines (reasons to clobber the build). | 735 # Check for landmines (reasons to clobber the build). |
702 "name": "landmines", | 736 "name": "landmines", |
703 "pattern": ".", | 737 "pattern": ".", |
704 "action": ["python", "src/build/landmines.py"], | 738 "action": ["python", "src/build/landmines.py"], |
705 }, | 739 }, |
706 ] | 740 ] |
OLD | NEW |