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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 "src/testing/iossim/third_party/class-dump": | 403 "src/testing/iossim/third_party/class-dump": |
404 "/trunk/deps/third_party/class-dump@199203", | 404 "/trunk/deps/third_party/class-dump@199203", |
405 | 405 |
406 # Pull only the headers from WebKit. | 406 # Pull only the headers from WebKit. |
407 "src/third_party/WebKit/Source/WebKit/chromium/public": | 407 "src/third_party/WebKit/Source/WebKit/chromium/public": |
408 Var("ios_webkit_trunk") + "/Source/WebKit/chromium/public@" + | 408 Var("ios_webkit_trunk") + "/Source/WebKit/chromium/public@" + |
409 Var("ios_webkit_revision"), | 409 Var("ios_webkit_revision"), |
410 "src/third_party/WebKit/Source/Platform/chromium/public": | 410 "src/third_party/WebKit/Source/Platform/chromium/public": |
411 Var("ios_webkit_trunk") + "/Source/Platform/chromium/public@" + | 411 Var("ios_webkit_trunk") + "/Source/Platform/chromium/public@" + |
412 Var("ios_webkit_revision"), | 412 Var("ios_webkit_revision"), |
| 413 # Pull only the headers from Blink. |
| 414 "src/third_party/WebKit/public": |
| 415 Var("webkit_trunk") + "/public@" + Var("webkit_revision"), |
413 | 416 |
414 # Code that's not needed due to not building everything (especially WebKit). | 417 # Code that's not needed due to not building everything (especially WebKit). |
415 "src/build/util/support": None, | 418 "src/build/util/support": None, |
416 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": Non
e, | 419 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": Non
e, |
417 "src/content/test/data/layout_tests/LayoutTests/editing/pasteboard/resources
": None, | 420 "src/content/test/data/layout_tests/LayoutTests/editing/pasteboard/resources
": None, |
418 "src/content/test/data/layout_tests/LayoutTests/fast/events": None, | 421 "src/content/test/data/layout_tests/LayoutTests/fast/events": None, |
419 "src/content/test/data/layout_tests/LayoutTests/fast/filesystem_temp": None, | 422 "src/content/test/data/layout_tests/LayoutTests/fast/filesystem_temp": None, |
420 "src/content/test/data/layout_tests/LayoutTests/fast/js/resources": None, | 423 "src/content/test/data/layout_tests/LayoutTests/fast/js/resources": None, |
421 "src/content/test/data/layout_tests/LayoutTests/fast/workers": None, | 424 "src/content/test/data/layout_tests/LayoutTests/fast/workers": None, |
422 "src/content/test/data/layout_tests/LayoutTests/http/tests/appcache": None, | 425 "src/content/test/data/layout_tests/LayoutTests/http/tests/appcache": None, |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 683 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
681 "pattern": ".", | 684 "pattern": ".", |
682 "action": ["python", "src/build/gyp_chromium"], | 685 "action": ["python", "src/build/gyp_chromium"], |
683 }, | 686 }, |
684 { | 687 { |
685 # Check for landmines (reasons to clobber the build). | 688 # Check for landmines (reasons to clobber the build). |
686 "pattern": ".", | 689 "pattern": ".", |
687 "action": ["python", "src/build/landmines.py"], | 690 "action": ["python", "src/build/landmines.py"], |
688 }, | 691 }, |
689 ] | 692 ] |
OLD | NEW |