| 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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 Var('chromium_git') + '/chromium/deps/undoview.git' + '@' + '3ba503e248f3cd
bd81b78325a24ece0984637559', | 465 Var('chromium_git') + '/chromium/deps/undoview.git' + '@' + '3ba503e248f3cd
bd81b78325a24ece0984637559', |
| 466 | 466 |
| 467 'src/third_party/liblouis/src': | 467 'src/third_party/liblouis/src': |
| 468 Var('chromium_git') + '/external/liblouis.git' + '@' + '3c2daee56250162e5a7
5830871601d74328d39f5', | 468 Var('chromium_git') + '/external/liblouis.git' + '@' + '3c2daee56250162e5a7
5830871601d74328d39f5', |
| 469 | 469 |
| 470 # Used for embedded builds. CrOS & Linux use the system version. | 470 # Used for embedded builds. CrOS & Linux use the system version. |
| 471 'src/third_party/fontconfig/src': | 471 'src/third_party/fontconfig/src': |
| 472 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 472 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
| 473 }, | 473 }, |
| 474 'android': { | 474 'android': { |
| 475 'src/third_party/android_protobuf/src': | |
| 476 'https://android.googlesource.com/platform/external/protobuf.git' + '@' + '
48ee66d295979372ed0234cefda42385daae8312', | |
| 477 | |
| 478 'src/third_party/android_tools': | 475 'src/third_party/android_tools': |
| 479 Var('chromium_git') + '/android_tools.git' + '@' + '31869996507de16812bb53a
3d0aaa15cd6194c16', | 476 Var('chromium_git') + '/android_tools.git' + '@' + '31869996507de16812bb53a
3d0aaa15cd6194c16', |
| 480 | 477 |
| 481 'src/third_party/aosp': | 478 'src/third_party/aosp': |
| 482 Var('chromium_git') + '/chromium/deps/aosp.git' + '@' + 'bbafe5155dff86bbba
1e92b42a073ffcfcfbf28c', | 479 Var('chromium_git') + '/chromium/deps/aosp.git' + '@' + 'bbafe5155dff86bbba
1e92b42a073ffcfcfbf28c', |
| 483 | 480 |
| 484 'src/third_party/apache-mime4j': | 481 'src/third_party/apache-mime4j': |
| 485 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 482 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 486 | 483 |
| 487 'src/third_party/findbugs': | 484 'src/third_party/findbugs': |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
| 803 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
| 804 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
| 805 'action': [ | 802 'action': [ |
| 806 'python', | 803 'python', |
| 807 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
| 808 'src/tools', | 805 'src/tools', |
| 809 ], | 806 ], |
| 810 }, | 807 }, |
| 811 ] | 808 ] |
| OLD | NEW |