OLD | NEW |
1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
3 | 3 |
4 vars = { | 4 vars = { |
5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 | 587 |
588 hooks = [ | 588 hooks = [ |
589 { | 589 { |
590 # This downloads binaries for Native Client's newlib toolchain. | 590 # This downloads binaries for Native Client's newlib toolchain. |
591 # Done in lieu of building the toolchain from scratch as it can take | 591 # Done in lieu of building the toolchain from scratch as it can take |
592 # anywhere from 30 minutes to 4 hours depending on platform to build. | 592 # anywhere from 30 minutes to 4 hours depending on platform to build. |
593 "pattern": ".", | 593 "pattern": ".", |
594 "action": [ | 594 "action": [ |
595 "python", "src/build/download_nacl_toolchains.py", | 595 "python", "src/build/download_nacl_toolchains.py", |
596 "--no-arm-trusted", | 596 "--no-arm-trusted", |
597 "--save-downloads-dir", | |
598 "src/native_client_sdk/src/build_tools/toolchain_archives", | |
599 "--keep", | 597 "--keep", |
600 ], | 598 ], |
601 }, | 599 }, |
602 { | 600 { |
603 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 601 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes |
604 # zero seconds to run. If something changed, it downloads a prebuilt clang, | 602 # zero seconds to run. If something changed, it downloads a prebuilt clang, |
605 # which takes ~20s, but clang speeds up builds by more than 20s. | 603 # which takes ~20s, but clang speeds up builds by more than 20s. |
606 "pattern": ".", | 604 "pattern": ".", |
607 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 605 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
608 }, | 606 }, |
(...skipping 13 matching lines...) Expand all Loading... |
622 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 620 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
623 "pattern": ".", | 621 "pattern": ".", |
624 "action": ["python", "src/build/gyp_chromium"], | 622 "action": ["python", "src/build/gyp_chromium"], |
625 }, | 623 }, |
626 { | 624 { |
627 # Check for landmines (reasons to clobber the build). | 625 # Check for landmines (reasons to clobber the build). |
628 "pattern": ".", | 626 "pattern": ".", |
629 "action": ["python", "src/build/landmines.py"], | 627 "action": ["python", "src/build/landmines.py"], |
630 }, | 628 }, |
631 ] | 629 ] |
OLD | NEW |