| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 'python', | 537 'python', |
| 538 'src/tools/remove_stale_pyc_files.py', | 538 'src/tools/remove_stale_pyc_files.py', |
| 539 'src/android_webview/tools', | 539 'src/android_webview/tools', |
| 540 'src/build/android', | 540 'src/build/android', |
| 541 'src/gpu/gles2_conform_support', | 541 'src/gpu/gles2_conform_support', |
| 542 'src/infra', | 542 'src/infra', |
| 543 'src/ppapi', | 543 'src/ppapi', |
| 544 'src/printing', | 544 'src/printing', |
| 545 'src/third_party/catapult', | 545 'src/third_party/catapult', |
| 546 'src/third_party/closure_compiler/build', | 546 'src/third_party/closure_compiler/build', |
| 547 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877. |
| 547 'src/tools', | 548 'src/tools', |
| 548 ], | 549 ], |
| 549 }, | 550 }, |
| 550 { | 551 { |
| 551 # This downloads binaries for Native Client's newlib toolchain. | 552 # This downloads binaries for Native Client's newlib toolchain. |
| 552 # Done in lieu of building the toolchain from scratch as it can take | 553 # Done in lieu of building the toolchain from scratch as it can take |
| 553 # anywhere from 30 minutes to 4 hours depending on platform to build. | 554 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 554 'name': 'nacltools', | 555 'name': 'nacltools', |
| 555 'pattern': '.', | 556 'pattern': '.', |
| 556 'action': [ | 557 'action': [ |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 { | 954 { |
| 954 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 955 'name': 'gyp', | 956 'name': 'gyp', |
| 956 'pattern': '.', | 957 'pattern': '.', |
| 957 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 958 }, | 959 }, |
| 959 ] | 960 ] |
| 960 | 961 |
| 961 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 962 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |