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