Chromium Code Reviews| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 441 "src/third_party/lighttpd": | 441 "src/third_party/lighttpd": |
| 442 "/trunk/deps/third_party/lighttpd@" + Var("lighttpd_revision"), | 442 "/trunk/deps/third_party/lighttpd@" + Var("lighttpd_revision"), |
| 443 | 443 |
| 444 "src/third_party/swig/mac": | 444 "src/third_party/swig/mac": |
| 445 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), | 445 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), |
| 446 | 446 |
| 447 # NSS, for SSLClientSocketNSS. | 447 # NSS, for SSLClientSocketNSS. |
| 448 "src/third_party/nss": | 448 "src/third_party/nss": |
| 449 "/trunk/deps/third_party/nss@" + Var("nss_revision"), | 449 "/trunk/deps/third_party/nss@" + Var("nss_revision"), |
| 450 | 450 |
| 451 "src/third_party/openssl": | |
| 452 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), | |
|
mattm
2014/03/20 23:40:24
Is this necessary? It's already part of the top le
haavardm
2014/03/21 13:08:21
I can try to remove it from a clean checkout. Howe
mattm
2014/03/21 19:35:23
NSS is not in the top level deps, since linux uses
Ryan Sleevi
2014/03/21 19:47:51
Because on Win/Mac/iOS, we build all of NSS & NSPR
haavardm
2014/03/24 18:48:52
Done.
| |
| 453 | |
| 451 "src/chrome/installer/mac/third_party/xz/xz": | 454 "src/chrome/installer/mac/third_party/xz/xz": |
| 452 "/trunk/deps/third_party/xz@233311", | 455 "/trunk/deps/third_party/xz@233311", |
| 453 }, | 456 }, |
| 454 "unix": { | 457 "unix": { |
| 455 # Linux, really. | 458 # Linux, really. |
| 456 "src/chrome/tools/test/reference_build/chrome_linux": | 459 "src/chrome/tools/test/reference_build/chrome_linux": |
| 457 "/trunk/deps/reference_builds/chrome_linux64@254637", | 460 "/trunk/deps/reference_builds/chrome_linux64@254637", |
| 458 | 461 |
| 459 "src/third_party/xdg-utils": | 462 "src/third_party/xdg-utils": |
| 460 "/trunk/deps/third_party/xdg-utils@203785", | 463 "/trunk/deps/third_party/xdg-utils@203785", |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 712 "-s", "src/build/linux/bin/eu-strip.sha1", | 715 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 713 ], | 716 ], |
| 714 }, | 717 }, |
| 715 { | 718 { |
| 716 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 719 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 717 "name": "gyp", | 720 "name": "gyp", |
| 718 "pattern": ".", | 721 "pattern": ".", |
| 719 "action": ["python", "src/build/gyp_chromium"], | 722 "action": ["python", "src/build/gyp_chromium"], |
| 720 }, | 723 }, |
| 721 ] | 724 ] |
| OLD | NEW |