| 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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 ], | 808 ], |
| 809 }, | 809 }, |
| 810 { | 810 { |
| 811 # Pull sanitizer-instrumented third-party libraries if requested via | 811 # Pull sanitizer-instrumented third-party libraries if requested via |
| 812 # GYP_DEFINES. | 812 # GYP_DEFINES. |
| 813 'name': 'instrumented_libraries', | 813 'name': 'instrumented_libraries', |
| 814 'pattern': '\\.sha1', | 814 'pattern': '\\.sha1', |
| 815 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 815 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 816 }, | 816 }, |
| 817 { | 817 { |
| 818 # Pull doclava binaries if GYP_DEFINES indicate building for Android. |
| 819 'name': 'doclava', |
| 820 'pattern': '.', |
| 821 'action': ['python', |
| 822 'src/build/android/download_doclava.py', |
| 823 ], |
| 824 }, |
| 825 { |
| 818 # Ensure that while generating dependencies lists in .gyp files we don't | 826 # Ensure that while generating dependencies lists in .gyp files we don't |
| 819 # accidentally reference any .pyc files whose corresponding .py files have | 827 # accidentally reference any .pyc files whose corresponding .py files have |
| 820 # already been deleted. | 828 # already been deleted. |
| 821 # We should actually try to avoid generating .pyc files, crbug.com/500078. | 829 # We should actually try to avoid generating .pyc files, crbug.com/500078. |
| 822 'name': 'remove_stale_pyc_files', | 830 'name': 'remove_stale_pyc_files', |
| 823 'pattern': '.', | 831 'pattern': '.', |
| 824 'action': [ | 832 'action': [ |
| 825 'python', | 833 'python', |
| 826 'src/tools/remove_stale_pyc_files.py', | 834 'src/tools/remove_stale_pyc_files.py', |
| 827 'src/android_webview/tools', | 835 'src/android_webview/tools', |
| 828 'src/gpu/gles2_conform_support', | 836 'src/gpu/gles2_conform_support', |
| 829 'src/infra', | 837 'src/infra', |
| 830 'src/ppapi', | 838 'src/ppapi', |
| 831 'src/printing', | 839 'src/printing', |
| 832 'src/third_party/closure_compiler/build', | 840 'src/third_party/closure_compiler/build', |
| 833 'src/tools', | 841 'src/tools', |
| 834 ], | 842 ], |
| 835 }, | 843 }, |
| 836 { | 844 { |
| 837 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 838 'name': 'gyp', | 846 'name': 'gyp', |
| 839 'pattern': '.', | 847 'pattern': '.', |
| 840 'action': ['python', 'src/build/gyp_chromium'], | 848 'action': ['python', 'src/build/gyp_chromium'], |
| 841 }, | 849 }, |
| 842 ] | 850 ] |
| OLD | NEW |