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 | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
8 # gclient runhooks | 8 # gclient runhooks |
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
(...skipping 10 matching lines...) Expand all Loading... |
21 "llvm_git": "https://llvm.googlesource.com", | 21 "llvm_git": "https://llvm.googlesource.com", |
22 "libcxx_revision": "206024", | 22 "libcxx_revision": "206024", |
23 "libcxxabi_revision": "206024", | 23 "libcxxabi_revision": "206024", |
24 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 24 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
25 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 25 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
26 "webkit_revision": "172472", | 26 "webkit_revision": "172472", |
27 "chromium_git": "https://chromium.googlesource.com", | 27 "chromium_git": "https://chromium.googlesource.com", |
28 "chromiumos_git": "https://chromium.googlesource.com/chromiumos", | 28 "chromiumos_git": "https://chromium.googlesource.com/chromiumos", |
29 "skia_git": "https://skia.googlesource.com", | 29 "skia_git": "https://skia.googlesource.com", |
30 "swig_revision": "230490", | 30 "swig_revision": "230490", |
31 "nacl_revision": "13078", | 31 "nacl_revision": "13018", |
32 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS | 32 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS |
33 # to update other nacl_*_revision's. | 33 # to update other nacl_*_revision's. |
34 "nacl_tools_revision": "12970", # native_client/DEPS: tools_rev | 34 "nacl_tools_revision": "12970", # native_client/DEPS: tools_rev |
35 "google_toolbox_for_mac_revision": "662", | 35 "google_toolbox_for_mac_revision": "662", |
36 "libaddressinput_revision": "176", | 36 "libaddressinput_revision": "176", |
37 "libphonenumber_revision": "621", | 37 "libphonenumber_revision": "621", |
38 "libvpx_revision": "264320", | 38 "libvpx_revision": "264320", |
39 "lss_revision": "26", | 39 "lss_revision": "26", |
40 | 40 |
41 # These two FFmpeg variables must be updated together. One is used for SVN | 41 # These two FFmpeg variables must be updated together. One is used for SVN |
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 | 581 |
582 hooks = [ | 582 hooks = [ |
583 { | 583 { |
584 # This downloads binaries for Native Client's newlib toolchain. | 584 # This downloads binaries for Native Client's newlib toolchain. |
585 # Done in lieu of building the toolchain from scratch as it can take | 585 # Done in lieu of building the toolchain from scratch as it can take |
586 # anywhere from 30 minutes to 4 hours depending on platform to build. | 586 # anywhere from 30 minutes to 4 hours depending on platform to build. |
587 "name": "nacltools", | 587 "name": "nacltools", |
588 "pattern": ".", | 588 "pattern": ".", |
589 "action": [ | 589 "action": [ |
590 "python", "src/build/download_nacl_toolchains.py", | 590 "python", "src/build/download_nacl_toolchains.py", |
591 "--exclude", "arm_trusted", | 591 "--no-arm-trusted", |
| 592 "--keep", |
592 ], | 593 ], |
593 }, | 594 }, |
594 { | 595 { |
595 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates | 596 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates |
596 # at about the same rate that the chrome build deps change. | 597 # at about the same rate that the chrome build deps change. |
597 # This script is a no-op except for linux users who have | 598 # This script is a no-op except for linux users who have |
598 # target_arch=arm in their GYP_DEFINES. | 599 # target_arch=arm in their GYP_DEFINES. |
599 "name": "sysroot", | 600 "name": "sysroot", |
600 "pattern": ".", | 601 "pattern": ".", |
601 "action": ["python", "src/build/linux/install-arm-sysroot.py", | 602 "action": ["python", "src/build/linux/install-arm-sysroot.py", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 "-s", "src/build/linux/bin/eu-strip.sha1", | 756 "-s", "src/build/linux/bin/eu-strip.sha1", |
756 ], | 757 ], |
757 }, | 758 }, |
758 { | 759 { |
759 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 760 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
760 "name": "gyp", | 761 "name": "gyp", |
761 "pattern": ".", | 762 "pattern": ".", |
762 "action": ["python", "src/build/gyp_chromium"], | 763 "action": ["python", "src/build/gyp_chromium"], |
763 }, | 764 }, |
764 ] | 765 ] |
OLD | NEW |