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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 "name": "eu-strip", | 761 "name": "eu-strip", |
757 "pattern": ".", | 762 "pattern": ".", |
758 "action": [ "download_from_google_storage", | 763 "action": [ "download_from_google_storage", |
759 "--no_resume", | 764 "--no_resume", |
760 "--platform=linux*", | 765 "--platform=linux*", |
761 "--no_auth", | 766 "--no_auth", |
762 "--bucket", "chromium-eu-strip", | 767 "--bucket", "chromium-eu-strip", |
763 "-s", "src/build/linux/bin/eu-strip.sha1", | 768 "-s", "src/build/linux/bin/eu-strip.sha1", |
764 ], | 769 ], |
765 }, | 770 }, |
766 # Pull the Syzygy binaries, used for optimization and instrumentation. | |
767 { | |
768 "name": "syzygy-binaries", | |
769 "pattern": ".", | |
770 "action": ["python", | |
771 "src/build/get_syzygy_binaries.py", | |
772 "--output-dir=src/third_party/syzygy/binaries", | |
773 "--revision=b08fb72610963d31cc3eae33f746a04e263bd860", | |
774 "--overwrite", | |
775 ], | |
776 }, | |
777 { | 771 { |
778 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 772 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
779 "name": "gyp", | 773 "name": "gyp", |
780 "pattern": ".", | 774 "pattern": ".", |
781 "action": ["python", "src/build/gyp_chromium"], | 775 "action": ["python", "src/build/gyp_chromium"], |
782 }, | 776 }, |
783 ] | 777 ] |
OLD | NEW |