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