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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 | 488 |
489 'src/third_party/requests/src': | 489 'src/third_party/requests/src': |
490 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 490 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
491 | 491 |
492 }, | 492 }, |
493 } | 493 } |
494 | 494 |
495 | 495 |
496 include_rules = [ | 496 include_rules = [ |
497 # Everybody can use some things. | 497 # Everybody can use some things. |
| 498 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
498 '+base', | 499 '+base', |
499 '+build', | 500 '+build', |
500 '+ipc', | 501 '+ipc', |
501 | 502 |
502 # Everybody can use headers generated by tools/generate_library_loader. | 503 # Everybody can use headers generated by tools/generate_library_loader. |
503 '+library_loaders', | 504 '+library_loaders', |
504 | 505 |
505 '+testing', | 506 '+testing', |
506 '+third_party/icu/source/common/unicode', | 507 '+third_party/icu/source/common/unicode', |
507 '+third_party/icu/source/i18n/unicode', | 508 '+third_party/icu/source/i18n/unicode', |
508 '+url', | 509 '+url', |
509 ] | 510 ] |
510 | 511 |
511 | 512 |
512 # checkdeps.py shouldn't check include paths for files in these dirs: | 513 # checkdeps.py shouldn't check include paths for files in these dirs: |
513 skip_child_includes = [ | 514 skip_child_includes = [ |
514 'breakpad', | 515 'breakpad', |
515 'delegate_execute', | |
516 'metro_driver', | |
517 'native_client_sdk', | 516 'native_client_sdk', |
518 'o3d', | 517 'out', |
519 'sdch', | 518 'sdch', |
520 'skia', | 519 'skia', |
521 'testing', | 520 'testing', |
522 'third_party', | |
523 'v8', | 521 'v8', |
524 'win8', | 522 'win8', |
525 ] | 523 ] |
526 | 524 |
527 | 525 |
528 hooks = [ | 526 hooks = [ |
529 { | 527 { |
530 # This clobbers when necessary (based on get_landmines.py). It must be the | 528 # This clobbers when necessary (based on get_landmines.py). It must be the |
531 # first hook so that other things that get/generate into the output | 529 # first hook so that other things that get/generate into the output |
532 # directory will not subsequently be clobbered. | 530 # directory will not subsequently be clobbered. |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 # corresponding .py files have already been deleted. | 789 # corresponding .py files have already been deleted. |
792 'name': 'remove_stale_pyc_files', | 790 'name': 'remove_stale_pyc_files', |
793 'pattern': 'src/tools/.*\\.py', | 791 'pattern': 'src/tools/.*\\.py', |
794 'action': [ | 792 'action': [ |
795 'python', | 793 'python', |
796 'src/tools/remove_stale_pyc_files.py', | 794 'src/tools/remove_stale_pyc_files.py', |
797 'src/tools', | 795 'src/tools', |
798 ], | 796 ], |
799 }, | 797 }, |
800 ] | 798 ] |
OLD | NEW |