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 -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
9 # .gclient file (the parent of "src"). | 9 # .gclient file (the parent of "src"). |
10 # | 10 # |
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 "skia", | 580 "skia", |
581 "testing", | 581 "testing", |
582 "third_party", | 582 "third_party", |
583 "v8", | 583 "v8", |
584 "win8", | 584 "win8", |
585 ] | 585 ] |
586 | 586 |
587 | 587 |
588 hooks = [ | 588 hooks = [ |
589 { | 589 { |
590 # This clobbers when necessary (based on get_landmines.py). It must be the | |
591 # first hook so that other things that get/generate into the output | |
592 # directory will not subsequently be clobbered. | |
593 "name": "landmines", | |
594 "pattern": ".", | |
595 "action": [ | |
596 "python", | |
597 "src/build/landmines.py", | |
598 ], | |
599 }, | |
600 { | |
601 # This downloads binaries for Native Client's newlib toolchain. | 590 # This downloads binaries for Native Client's newlib toolchain. |
602 # Done in lieu of building the toolchain from scratch as it can take | 591 # Done in lieu of building the toolchain from scratch as it can take |
603 # anywhere from 30 minutes to 4 hours depending on platform to build. | 592 # anywhere from 30 minutes to 4 hours depending on platform to build. |
604 "name": "nacltools", | 593 "name": "nacltools", |
605 "pattern": ".", | 594 "pattern": ".", |
606 "action": [ | 595 "action": [ |
607 "python", "src/build/download_nacl_toolchains.py", | 596 "python", "src/build/download_nacl_toolchains.py", |
608 "--exclude", "arm_trusted", | 597 "--exclude", "arm_trusted", |
609 ], | 598 ], |
610 }, | 599 }, |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 "src/third_party/apache-win32", | 804 "src/third_party/apache-win32", |
816 ], | 805 ], |
817 }, | 806 }, |
818 { | 807 { |
819 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 808 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
820 "name": "gyp", | 809 "name": "gyp", |
821 "pattern": ".", | 810 "pattern": ".", |
822 "action": ["python", "src/build/gyp_chromium"], | 811 "action": ["python", "src/build/gyp_chromium"], |
823 }, | 812 }, |
824 ] | 813 ] |
OLD | NEW |