| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 }, | 651 }, |
| 652 { | 652 { |
| 653 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 653 # Update LASTCHANGE.blink. This is also run by export_tarball.py in |
| 654 # src/tools/export_tarball - please keep them in sync. | 654 # src/tools/export_tarball - please keep them in sync. |
| 655 "name": "lastchange", | 655 "name": "lastchange", |
| 656 "pattern": ".", | 656 "pattern": ".", |
| 657 "action": ["python", "src/build/util/lastchange.py", | 657 "action": ["python", "src/build/util/lastchange.py", |
| 658 "-s", "src/third_party/WebKit", | 658 "-s", "src/third_party/WebKit", |
| 659 "-o", "src/build/util/LASTCHANGE.blink"], | 659 "-o", "src/build/util/LASTCHANGE.blink"], |
| 660 }, | 660 }, |
| 661 # Pull node.js binaries. | |
| 662 { | |
| 663 "name": "nodejs_win", | |
| 664 "pattern": "src/tools/nodejs/win/node.exe.sha1", | |
| 665 "action": [ "download_from_google_storage", | |
| 666 "--no_resume", | |
| 667 "--platform=win32", | |
| 668 "--no_auth", | |
| 669 "--bucket", "chromium-nodejs", | |
| 670 "-s", "src/tools/nodejs/win/node.exe.sha1", | |
| 671 ], | |
| 672 }, | |
| 673 { | |
| 674 "name": "nodejs_mac", | |
| 675 "pattern": "src/tools/nodejs/mac/node.sha1", | |
| 676 "action": [ "download_from_google_storage", | |
| 677 "--no_resume", | |
| 678 "--platform=darwin", | |
| 679 "--no_auth", | |
| 680 "--bucket", "chromium-nodejs", | |
| 681 "-s", "src/tools/nodejs/mac/node.sha1", | |
| 682 ], | |
| 683 }, | |
| 684 { | |
| 685 "name": "nodejs_linux", | |
| 686 "pattern": "src/tools/nodejs/linux/*.sha1", | |
| 687 "action": [ "download_from_google_storage", | |
| 688 "--no_resume", | |
| 689 "--platform=linux*", | |
| 690 "--no_auth", | |
| 691 "--bucket", "chromium-nodejs", | |
| 692 "--directory", "src/tools/nodejs/linux", | |
| 693 ], | |
| 694 }, | |
| 695 # Pull GN binaries. This needs to be before running GYP below. | 661 # Pull GN binaries. This needs to be before running GYP below. |
| 696 { | 662 { |
| 697 "name": "gn_win", | 663 "name": "gn_win", |
| 698 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", | 664 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", |
| 699 "action": [ "download_from_google_storage", | 665 "action": [ "download_from_google_storage", |
| 700 "--no_resume", | 666 "--no_resume", |
| 701 "--platform=win32", | 667 "--platform=win32", |
| 702 "--no_auth", | 668 "--no_auth", |
| 703 "--bucket", "chromium-gn", | 669 "--bucket", "chromium-gn", |
| 704 "-s", "src/tools/gn/bin/win/gn.exe.sha1", | 670 "-s", "src/tools/gn/bin/win/gn.exe.sha1", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 "pattern": ".", | 709 "pattern": ".", |
| 744 "action": ["python", "src/build/gyp_chromium"], | 710 "action": ["python", "src/build/gyp_chromium"], |
| 745 }, | 711 }, |
| 746 { | 712 { |
| 747 # Check for landmines (reasons to clobber the build). | 713 # Check for landmines (reasons to clobber the build). |
| 748 "name": "landmines", | 714 "name": "landmines", |
| 749 "pattern": ".", | 715 "pattern": ".", |
| 750 "action": ["python", "src/build/landmines.py"], | 716 "action": ["python", "src/build/landmines.py"], |
| 751 }, | 717 }, |
| 752 ] | 718 ] |
| OLD | NEW |