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 { |
590 # This downloads binaries for Native Client's newlib toolchain. | 601 # This downloads binaries for Native Client's newlib toolchain. |
591 # Done in lieu of building the toolchain from scratch as it can take | 602 # Done in lieu of building the toolchain from scratch as it can take |
592 # anywhere from 30 minutes to 4 hours depending on platform to build. | 603 # anywhere from 30 minutes to 4 hours depending on platform to build. |
593 "name": "nacltools", | 604 "name": "nacltools", |
594 "pattern": ".", | 605 "pattern": ".", |
595 "action": [ | 606 "action": [ |
596 "python", "src/build/download_nacl_toolchains.py", | 607 "python", "src/build/download_nacl_toolchains.py", |
597 "--exclude", "arm_trusted", | 608 "--exclude", "arm_trusted", |
598 ], | 609 ], |
599 }, | 610 }, |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 "src/third_party/apache-win32", | 815 "src/third_party/apache-win32", |
805 ], | 816 ], |
806 }, | 817 }, |
807 { | 818 { |
808 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 819 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
809 "name": "gyp", | 820 "name": "gyp", |
810 "pattern": ".", | 821 "pattern": ".", |
811 "action": ["python", "src/build/gyp_chromium"], | 822 "action": ["python", "src/build/gyp_chromium"], |
812 }, | 823 }, |
813 ] | 824 ] |
OLD | NEW |