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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
761 "name": "eu-strip", | 756 "name": "eu-strip", |
762 "pattern": ".", | 757 "pattern": ".", |
763 "action": [ "download_from_google_storage", | 758 "action": [ "download_from_google_storage", |
764 "--no_resume", | 759 "--no_resume", |
765 "--platform=linux*", | 760 "--platform=linux*", |
766 "--no_auth", | 761 "--no_auth", |
767 "--bucket", "chromium-eu-strip", | 762 "--bucket", "chromium-eu-strip", |
768 "-s", "src/build/linux/bin/eu-strip.sha1", | 763 "-s", "src/build/linux/bin/eu-strip.sha1", |
769 ], | 764 ], |
770 }, | 765 }, |
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", | |
Sigurður Ásgeirsson
2014/05/28 15:24:12
Sorry to be a ninny, but everything else above ind
chrisha
2014/05/28 15:40:50
There's no real advantage to one vs the other for
| |
774 "--overwrite", | |
775 ], | |
776 }, | |
771 { | 777 { |
772 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 778 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
773 "name": "gyp", | 779 "name": "gyp", |
774 "pattern": ".", | 780 "pattern": ".", |
775 "action": ["python", "src/build/gyp_chromium"], | 781 "action": ["python", "src/build/gyp_chromium"], |
776 }, | 782 }, |
777 ] | 783 ] |
OLD | NEW |