| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 Var("nacl_tools_revision")), | 361 Var("nacl_tools_revision")), |
| 362 # GNU binutils assembler for x86-64. | 362 # GNU binutils assembler for x86-64. |
| 363 "src/third_party/mingw-w64/mingw/bin": | 363 "src/third_party/mingw-w64/mingw/bin": |
| 364 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + | 364 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + |
| 365 Var("nacl_tools_revision")), | 365 Var("nacl_tools_revision")), |
| 366 | 366 |
| 367 # Dependencies used by libjpeg-turbo | 367 # Dependencies used by libjpeg-turbo |
| 368 "src/third_party/yasm/binaries": | 368 "src/third_party/yasm/binaries": |
| 369 "/trunk/deps/third_party/yasm/binaries@154708", | 369 "/trunk/deps/third_party/yasm/binaries@154708", |
| 370 | 370 |
| 371 # Binary level profile guided optimizations. This points to the | |
| 372 # latest release binaries for the toolchain. | |
| 373 "src/third_party/syzygy/binaries": | |
| 374 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@2154", | |
| 375 | |
| 376 # Binaries for nacl sdk. | 371 # Binaries for nacl sdk. |
| 377 "src/third_party/nacl_sdk_binaries": | 372 "src/third_party/nacl_sdk_binaries": |
| 378 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 373 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
| 379 }, | 374 }, |
| 380 "ios": { | 375 "ios": { |
| 381 "src/third_party/google_toolbox_for_mac/src": | 376 "src/third_party/google_toolbox_for_mac/src": |
| 382 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 377 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
| 383 Var("google_toolbox_for_mac_revision"), | 378 Var("google_toolbox_for_mac_revision"), |
| 384 | 379 |
| 385 "src/third_party/nss": | 380 "src/third_party/nss": |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 "name": "drmemory", | 768 "name": "drmemory", |
| 774 "pattern": ".", | 769 "pattern": ".", |
| 775 "action": [ "download_from_google_storage", | 770 "action": [ "download_from_google_storage", |
| 776 "--no_resume", | 771 "--no_resume", |
| 777 "--platform=win32", | 772 "--platform=win32", |
| 778 "--no_auth", | 773 "--no_auth", |
| 779 "--bucket", "chromium-drmemory", | 774 "--bucket", "chromium-drmemory", |
| 780 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", | 775 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", |
| 781 ], | 776 ], |
| 782 }, | 777 }, |
| 778 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 779 { |
| 780 "name": "syzygy-binaries", |
| 781 "pattern": ".", |
| 782 "action": ["python", |
| 783 "src/build/get_syzygy_binaries.py", |
| 784 "--output-dir=src/third_party/syzygy/binaries", |
| 785 "--revision=b08fb72610963d31cc3eae33f746a04e263bd860", |
| 786 "--overwrite", |
| 787 ], |
| 788 }, |
| 783 { | 789 { |
| 784 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 790 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 785 "name": "gyp", | 791 "name": "gyp", |
| 786 "pattern": ".", | 792 "pattern": ".", |
| 787 "action": ["python", "src/build/gyp_chromium"], | 793 "action": ["python", "src/build/gyp_chromium"], |
| 788 }, | 794 }, |
| 789 ] | 795 ] |
| OLD | NEW |