Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: DEPS

Issue 20349002: Stop pulling googleurl through DEPS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: change licenses.py and add LICENSE.txt Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | android_webview/buildbot/deps_whitelist.py » ('j') | tools/licenses.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | android_webview/buildbot/deps_whitelist.py » ('j') | tools/licenses.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698