| OLD | NEW |
| 1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
| 2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
| 3 # where. | 3 # where. |
| 4 # | 4 # |
| 5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
| 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
| 7 # | 7 # |
| 8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
| 9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
| 10 # | 10 # |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 'pattern': '.', | 634 'pattern': '.', |
| 635 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 635 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
| 636 }, | 636 }, |
| 637 { | 637 { |
| 638 # Update LASTCHANGE. | 638 # Update LASTCHANGE. |
| 639 'name': 'lastchange', | 639 'name': 'lastchange', |
| 640 'pattern': '.', | 640 'pattern': '.', |
| 641 'action': ['python', 'src/build/util/lastchange.py', | 641 'action': ['python', 'src/build/util/lastchange.py', |
| 642 '-o', 'src/build/util/LASTCHANGE'], | 642 '-o', 'src/build/util/LASTCHANGE'], |
| 643 }, | 643 }, |
| 644 { | |
| 645 # Update LASTCHANGE.blink. | |
| 646 'name': 'lastchange_blink', | |
| 647 'pattern': '.', | |
| 648 'action': ['python', 'src/build/util/lastchange.py', | |
| 649 '--git-hash-only', | |
| 650 '-s', 'src/third_party/WebKit', | |
| 651 '-o', 'src/build/util/LASTCHANGE.blink'], | |
| 652 }, | |
| 653 # Pull GN binaries. This needs to be before running GYP below. | 644 # Pull GN binaries. This needs to be before running GYP below. |
| 654 { | 645 { |
| 655 'name': 'gn_win', | 646 'name': 'gn_win', |
| 656 'pattern': '.', | 647 'pattern': '.', |
| 657 'action': [ 'download_from_google_storage', | 648 'action': [ 'download_from_google_storage', |
| 658 '--no_resume', | 649 '--no_resume', |
| 659 '--platform=win32', | 650 '--platform=win32', |
| 660 '--no_auth', | 651 '--no_auth', |
| 661 '--bucket', 'chromium-gn', | 652 '--bucket', 'chromium-gn', |
| 662 '-s', 'src/buildtools/win/gn.exe.sha1', | 653 '-s', 'src/buildtools/win/gn.exe.sha1', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 'src/build/android/download_doclava.py', | 843 'src/build/android/download_doclava.py', |
| 853 ], | 844 ], |
| 854 }, | 845 }, |
| 855 { | 846 { |
| 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 847 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 857 'name': 'gyp', | 848 'name': 'gyp', |
| 858 'pattern': '.', | 849 'pattern': '.', |
| 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 850 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 860 }, | 851 }, |
| 861 ] | 852 ] |
| OLD | NEW |