| 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://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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 # Three lines of non-changing comments so that | 46 # Three lines of non-changing comments so that |
| 47 # the commit queue can handle CLs rolling openssl | 47 # the commit queue can handle CLs rolling openssl |
| 48 # and whatever else without interference from each other. | 48 # and whatever else without interference from each other. |
| 49 "openssl_revision": "207965", | 49 "openssl_revision": "207965", |
| 50 } | 50 } |
| 51 | 51 |
| 52 deps = { | 52 deps = { |
| 53 "src/breakpad/src": | 53 "src/breakpad/src": |
| 54 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1199", | 54 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1199", |
| 55 | 55 |
| 56 "src/googleurl": | |
| 57 (Var("googlecode_url") % "google-url") + "/trunk@185", | |
| 58 | |
| 59 "src/sdch/open-vcdiff": | 56 "src/sdch/open-vcdiff": |
| 60 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 57 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
| 61 | 58 |
| 62 "src/testing/gtest": | 59 "src/testing/gtest": |
| 63 (Var("googlecode_url") % "googletest") + "/trunk@629", | 60 (Var("googlecode_url") % "googletest") + "/trunk@629", |
| 64 | 61 |
| 65 "src/testing/gmock": | 62 "src/testing/gmock": |
| 66 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 63 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 67 | 64 |
| 68 "src/third_party/angle_dx11": | 65 "src/third_party/angle_dx11": |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 "+build", | 501 "+build", |
| 505 "+ipc", | 502 "+ipc", |
| 506 | 503 |
| 507 # Everybody can use headers generated by tools/generate_library_loader. | 504 # Everybody can use headers generated by tools/generate_library_loader. |
| 508 "+library_loaders", | 505 "+library_loaders", |
| 509 | 506 |
| 510 "+testing", | 507 "+testing", |
| 511 "+third_party/icu/source/common/unicode", | 508 "+third_party/icu/source/common/unicode", |
| 512 "+third_party/icu/source/i18n/unicode", | 509 "+third_party/icu/source/i18n/unicode", |
| 513 "+url", | 510 "+url", |
| 514 # TODO(tfarina): Temporary, until we finish the migration to url. Remove this! | |
| 515 "!googleurl", | |
| 516 ] | 511 ] |
| 517 | 512 |
| 518 | 513 |
| 519 # checkdeps.py shouldn't check include paths for files in these dirs: | 514 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 520 skip_child_includes = [ | 515 skip_child_includes = [ |
| 521 "breakpad", | 516 "breakpad", |
| 522 "chrome_frame", | 517 "chrome_frame", |
| 523 "delegate_execute", | 518 "delegate_execute", |
| 524 "googleurl", | |
| 525 "metro_driver", | 519 "metro_driver", |
| 526 "native_client_sdk", | 520 "native_client_sdk", |
| 527 "o3d", | 521 "o3d", |
| 528 "pdf", | 522 "pdf", |
| 529 "sdch", | 523 "sdch", |
| 530 "skia", | 524 "skia", |
| 531 "testing", | 525 "testing", |
| 532 "third_party", | 526 "third_party", |
| 533 "v8", | 527 "v8", |
| 534 "win8", | 528 "win8", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 "pattern": ".", | 612 "pattern": ".", |
| 619 "action": ["python", "src/build/gyp_chromium"], | 613 "action": ["python", "src/build/gyp_chromium"], |
| 620 }, | 614 }, |
| 621 { | 615 { |
| 622 # Check for landmines (reasons to clobber the build). | 616 # Check for landmines (reasons to clobber the build). |
| 623 "name": "landmines", | 617 "name": "landmines", |
| 624 "pattern": ".", | 618 "pattern": ".", |
| 625 "action": ["python", "src/build/landmines.py"], | 619 "action": ["python", "src/build/landmines.py"], |
| 626 }, | 620 }, |
| 627 ] | 621 ] |
| OLD | NEW |