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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 ] | 575 ] |
576 | 576 |
577 | 577 |
578 # checkdeps.py shouldn't check include paths for files in these dirs: | 578 # checkdeps.py shouldn't check include paths for files in these dirs: |
579 skip_child_includes = [ | 579 skip_child_includes = [ |
580 "breakpad", | 580 "breakpad", |
581 "delegate_execute", | 581 "delegate_execute", |
582 "metro_driver", | 582 "metro_driver", |
583 "native_client_sdk", | 583 "native_client_sdk", |
584 "o3d", | 584 "o3d", |
585 "pdf", | |
586 "sdch", | 585 "sdch", |
587 "skia", | 586 "skia", |
588 "testing", | 587 "testing", |
589 "third_party", | 588 "third_party", |
590 "v8", | 589 "v8", |
591 "win8", | 590 "win8", |
592 ] | 591 ] |
593 | 592 |
594 | 593 |
595 hooks = [ | 594 hooks = [ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 "-s", "src/build/linux/bin/eu-strip.sha1", | 767 "-s", "src/build/linux/bin/eu-strip.sha1", |
769 ], | 768 ], |
770 }, | 769 }, |
771 { | 770 { |
772 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 771 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
773 "name": "gyp", | 772 "name": "gyp", |
774 "pattern": ".", | 773 "pattern": ".", |
775 "action": ["python", "src/build/gyp_chromium"], | 774 "action": ["python", "src/build/gyp_chromium"], |
776 }, | 775 }, |
777 ] | 776 ] |
OLD | NEW |