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 | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
8 # gclient runhooks | 8 # gclient runhooks |
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 Var("chromiumos_git") + "/third_party/pyelftools.git" + | 473 Var("chromiumos_git") + "/third_party/pyelftools.git" + |
474 "@bdc1d380acd88d4bfaf47265008091483b0d614e", | 474 "@bdc1d380acd88d4bfaf47265008091483b0d614e", |
475 | 475 |
476 "src/third_party/undoview": | 476 "src/third_party/undoview": |
477 "/trunk/deps/third_party/undoview@119694", | 477 "/trunk/deps/third_party/undoview@119694", |
478 | 478 |
479 "src/third_party/liblouis/src": | 479 "src/third_party/liblouis/src": |
480 Var("chromium_git") + | 480 Var("chromium_git") + |
481 "/external/liblouis.git@3c2daee56250162e5a75830871601d74328d39f5", | 481 "/external/liblouis.git@3c2daee56250162e5a75830871601d74328d39f5", |
482 | 482 |
| 483 # Used for embedded builds. CrOS & Linux use the system version. |
| 484 "src/third_party/fontconfig/src": |
| 485 Var("chromium_git") + "/external/fontconfig.git" + |
| 486 "@4f944971dac3c0bbc6fdd3bf3123e3c8378a3acb", |
483 }, | 487 }, |
484 "android": { | 488 "android": { |
485 "src/third_party/android_tools": | 489 "src/third_party/android_tools": |
486 Var("chromium_git") + "/android_tools.git" + | 490 Var("chromium_git") + "/android_tools.git" + |
487 "@25cf2d85072b06f78956ecaacd564ef56a054d65", | 491 "@25cf2d85072b06f78956ecaacd564ef56a054d65", |
488 | 492 |
489 "src/third_party/aosp": | 493 "src/third_party/aosp": |
490 "/trunk/deps/third_party/aosp@148330", | 494 "/trunk/deps/third_party/aosp@148330", |
491 | 495 |
492 "src/third_party/apache-mime4j": | 496 "src/third_party/apache-mime4j": |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 "pattern": ".", | 698 "pattern": ".", |
695 "action": ["python", "src/build/gyp_chromium"], | 699 "action": ["python", "src/build/gyp_chromium"], |
696 }, | 700 }, |
697 { | 701 { |
698 # Check for landmines (reasons to clobber the build). | 702 # Check for landmines (reasons to clobber the build). |
699 "name": "landmines", | 703 "name": "landmines", |
700 "pattern": ".", | 704 "pattern": ".", |
701 "action": ["python", "src/build/landmines.py"], | 705 "action": ["python", "src/build/landmines.py"], |
702 }, | 706 }, |
703 ] | 707 ] |
OLD | NEW |