| 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 }, | 659 }, |
| 660 { | 660 { |
| 661 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 661 # Update LASTCHANGE.blink. This is also run by export_tarball.py in |
| 662 # src/tools/export_tarball - please keep them in sync. | 662 # src/tools/export_tarball - please keep them in sync. |
| 663 "name": "lastchange", | 663 "name": "lastchange", |
| 664 "pattern": ".", | 664 "pattern": ".", |
| 665 "action": ["python", "src/build/util/lastchange.py", | 665 "action": ["python", "src/build/util/lastchange.py", |
| 666 "-s", "src/third_party/WebKit", | 666 "-s", "src/third_party/WebKit", |
| 667 "-o", "src/build/util/LASTCHANGE.blink"], | 667 "-o", "src/build/util/LASTCHANGE.blink"], |
| 668 }, | 668 }, |
| 669 # Pull GN binaries. This needs to be before running GYP below. | |
| 670 { | |
| 671 "name": "gn_win", | |
| 672 "pattern": "src/tools/gn/bin/win/gn.exe.sha1", | |
| 673 "action": [ "download_from_google_storage", | |
| 674 "--no_resume", | |
| 675 "--platform=win32", | |
| 676 "--no_auth", | |
| 677 "--bucket", "chromium-gn", | |
| 678 "-s", "src/tools/gn/bin/win/gn.exe.sha1", | |
| 679 ], | |
| 680 }, | |
| 681 { | |
| 682 "name": "gn_mac", | |
| 683 "pattern": "src/tools/gn/bin/mac/gn.sha1", | |
| 684 "action": [ "download_from_google_storage", | |
| 685 "--no_resume", | |
| 686 "--platform=darwin", | |
| 687 "--no_auth", | |
| 688 "--bucket", "chromium-gn", | |
| 689 "-s", "src/tools/gn/bin/mac/gn.sha1", | |
| 690 ], | |
| 691 }, | |
| 692 { | |
| 693 "name": "gn_linux", | |
| 694 "pattern": "src/tools/gn/bin/linux/gn.sha1", | |
| 695 "action": [ "download_from_google_storage", | |
| 696 "--no_resume", | |
| 697 "--platform=linux*", | |
| 698 "--no_auth", | |
| 699 "--bucket", "chromium-gn", | |
| 700 "-s", "src/tools/gn/bin/linux/gn.sha1", | |
| 701 ], | |
| 702 }, | |
| 703 { | |
| 704 "name": "gn_linux32", | |
| 705 "pattern": "src/tools/gn/bin/linux/gn32.sha1", | |
| 706 "action": [ "download_from_google_storage", | |
| 707 "--no_resume", | |
| 708 "--platform=linux*", | |
| 709 "--no_auth", | |
| 710 "--bucket", "chromium-gn", | |
| 711 "-s", "src/tools/gn/bin/linux/gn32.sha1", | |
| 712 ], | |
| 713 }, | |
| 714 # Pull clang-format binaries using checked-in hashes. | 669 # Pull clang-format binaries using checked-in hashes. |
| 715 { | 670 { |
| 716 "name": "clang_format_win", | 671 "name": "clang_format_win", |
| 717 "pattern": "src/third_party/clang_format/bin/win/clang-format.exe.sha1", | 672 "pattern": "src/third_party/clang_format/bin/win/clang-format.exe.sha1", |
| 718 "action": [ "download_from_google_storage", | 673 "action": [ "download_from_google_storage", |
| 719 "--no_resume", | 674 "--no_resume", |
| 720 "--platform=win32", | 675 "--platform=win32", |
| 721 "--no_auth", | 676 "--no_auth", |
| 722 "--bucket", "chromium-clang-format", | 677 "--bucket", "chromium-clang-format", |
| 723 "-s", "src/third_party/clang_format/bin/win/clang-format.exe.sha
1", | 678 "-s", "src/third_party/clang_format/bin/win/clang-format.exe.sha
1", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 "-s", "src/build/linux/bin/eu-strip.sha1", | 712 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 758 ], | 713 ], |
| 759 }, | 714 }, |
| 760 { | 715 { |
| 761 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 716 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 762 "name": "gyp", | 717 "name": "gyp", |
| 763 "pattern": ".", | 718 "pattern": ".", |
| 764 "action": ["python", "src/build/gyp_chromium"], | 719 "action": ["python", "src/build/gyp_chromium"], |
| 765 }, | 720 }, |
| 766 ] | 721 ] |
| OLD | NEW |