Chromium Code Reviews| 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://svn.code.sf.net/p/%(repo)s/code", | 8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
| 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 583 "pattern": ".", | 583 "pattern": ".", |
| 584 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 584 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 585 }, | 585 }, |
| 586 { | 586 { |
| 587 # Update the cygwin mount on Windows. | 587 # Update the cygwin mount on Windows. |
| 588 "name": "cygwin", | 588 "name": "cygwin", |
| 589 "pattern": ".", | 589 "pattern": ".", |
| 590 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], | 590 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], |
| 591 }, | 591 }, |
| 592 { | 592 { |
| 593 # Update LASTCHANGE. This is also run by export_tarball.py in | 593 # Update LASTCHANGE. This is also run by export_tarball.py in |
|
viettrungluu
2013/10/24 21:06:40
Does this comment apply?
| |
| 594 # src/tools/export_tarball - please keep them in sync. | 594 # src/tools/export_tarball - please keep them in sync. |
| 595 "name": "lastchange", | 595 "name": "lastchange", |
| 596 "pattern": ".", | 596 "pattern": ".", |
| 597 "action": ["python", "src/build/util/lastchange.py", | 597 "action": ["python", "src/build/util/lastchange.py", |
| 598 "-o", "src/build/util/LASTCHANGE"], | 598 "-o", "src/build/util/LASTCHANGE", |
| 599 "--header=src/build/util/last_change.h", | |
|
viettrungluu
2013/10/24 21:06:40
I don't know that it's a great idea to generate a
| |
| 600 "--define=LAST_CHANGE"], | |
| 599 }, | 601 }, |
| 600 { | 602 { |
| 601 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 603 # Update LASTCHANGE.blink. This is also run by export_tarball.py in |
| 602 # src/tools/export_tarball - please keep them in sync. | 604 # src/tools/export_tarball - please keep them in sync. |
| 603 "name": "lastchange", | 605 "name": "lastchange", |
| 604 "pattern": ".", | 606 "pattern": ".", |
| 605 "action": ["python", "src/build/util/lastchange.py", | 607 "action": ["python", "src/build/util/lastchange.py", |
| 606 "-s", "src/third_party/WebKit", | 608 "-s", "src/third_party/WebKit", |
| 607 "-o", "src/build/util/LASTCHANGE.blink"], | 609 "-o", "src/build/util/LASTCHANGE.blink", |
| 610 "--header=src/build/util/last_change_blink.h", | |
| 611 "--define=LAST_CHANGE_BLINK"], | |
| 608 }, | 612 }, |
| 609 { | 613 { |
| 610 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 614 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 611 "name": "gyp", | 615 "name": "gyp", |
| 612 "pattern": ".", | 616 "pattern": ".", |
| 613 "action": ["python", "src/build/gyp_chromium"], | 617 "action": ["python", "src/build/gyp_chromium"], |
| 614 }, | 618 }, |
| 615 { | 619 { |
| 616 # Check for landmines (reasons to clobber the build). | 620 # Check for landmines (reasons to clobber the build). |
| 617 "name": "landmines", | 621 "name": "landmines", |
| 618 "pattern": ".", | 622 "pattern": ".", |
| 619 "action": ["python", "src/build/landmines.py"], | 623 "action": ["python", "src/build/landmines.py"], |
| 620 }, | 624 }, |
| 621 ] | 625 ] |
| OLD | NEW |