| 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 |
| 371 # Binaries for nacl sdk. | 376 # Binaries for nacl sdk. |
| 372 "src/third_party/nacl_sdk_binaries": | 377 "src/third_party/nacl_sdk_binaries": |
| 373 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 378 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
| 374 }, | 379 }, |
| 375 "ios": { | 380 "ios": { |
| 376 "src/third_party/google_toolbox_for_mac/src": | 381 "src/third_party/google_toolbox_for_mac/src": |
| 377 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 382 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
| 378 Var("google_toolbox_for_mac_revision"), | 383 Var("google_toolbox_for_mac_revision"), |
| 379 | 384 |
| 380 "src/third_party/nss": | 385 "src/third_party/nss": |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 "name": "drmemory", | 773 "name": "drmemory", |
| 769 "pattern": ".", | 774 "pattern": ".", |
| 770 "action": [ "download_from_google_storage", | 775 "action": [ "download_from_google_storage", |
| 771 "--no_resume", | 776 "--no_resume", |
| 772 "--platform=win32", | 777 "--platform=win32", |
| 773 "--no_auth", | 778 "--no_auth", |
| 774 "--bucket", "chromium-drmemory", | 779 "--bucket", "chromium-drmemory", |
| 775 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", | 780 "-s", "src/third_party/drmemory/drmemory-windows-sfx.exe.sha1", |
| 776 ], | 781 ], |
| 777 }, | 782 }, |
| 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 }, | |
| 789 { | 783 { |
| 790 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 784 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 791 "name": "gyp", | 785 "name": "gyp", |
| 792 "pattern": ".", | 786 "pattern": ".", |
| 793 "action": ["python", "src/build/gyp_chromium"], | 787 "action": ["python", "src/build/gyp_chromium"], |
| 794 }, | 788 }, |
| 795 ] | 789 ] |
| OLD | NEW |