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://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
11 "webkit_revision": "121540", | 11 "webkit_revision": "121540", |
12 "chromium_git": "http://git.chromium.org/git", | 12 "chromium_git": "http://git.chromium.org/git", |
| 13 "chromiumos_git": "http://git.chromium.org/chromiumos", |
13 "swig_revision": "69281", | 14 "swig_revision": "69281", |
14 "nacl_revision": "9053", | 15 "nacl_revision": "9053", |
15 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS | 16 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS |
16 # to update other nacl_*_revision's. | 17 # to update other nacl_*_revision's. |
17 "nacl_tools_revision": "9016", # native_client/DEPS: tools_rev | 18 "nacl_tools_revision": "9016", # native_client/DEPS: tools_rev |
18 | 19 |
19 # These hashes need to be updated when nacl_toolchain_revision is changed. | 20 # These hashes need to be updated when nacl_toolchain_revision is changed. |
20 # After changing nacl_toolchain_revision, run 'gclient runhooks' to get the | 21 # After changing nacl_toolchain_revision, run 'gclient runhooks' to get the |
21 # new values. | 22 # new values. |
22 "nacl_toolchain_linux_x86_hash": | 23 "nacl_toolchain_linux_x86_hash": |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 Var("lss_revision")), | 436 Var("lss_revision")), |
436 | 437 |
437 "src/third_party/openssl": | 438 "src/third_party/openssl": |
438 "/trunk/deps/third_party/openssl@130472", | 439 "/trunk/deps/third_party/openssl@130472", |
439 | 440 |
440 "src/third_party/WebKit/Tools/gdb": | 441 "src/third_party/WebKit/Tools/gdb": |
441 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), | 442 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), |
442 | 443 |
443 "src/third_party/gold": | 444 "src/third_party/gold": |
444 "/trunk/deps/third_party/gold@124239", | 445 "/trunk/deps/third_party/gold@124239", |
| 446 |
| 447 # For Chromium OS. |
| 448 "src/third_party/cros_system_api": |
| 449 Var("chromiumos_git") + "/platform/system_api.git@a6b76c4e", |
445 }, | 450 }, |
446 "android": { | 451 "android": { |
447 "src/third_party/freetype": | 452 "src/third_party/freetype": |
448 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + | 453 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + |
449 "@1f74e4e7ad3ca4163b4578fc30da26a165dd55e7", | 454 "@1f74e4e7ad3ca4163b4578fc30da26a165dd55e7", |
450 | 455 |
451 "src/third_party/aosp": | 456 "src/third_party/aosp": |
452 "/trunk/deps/third_party/aosp@122156", | 457 "/trunk/deps/third_party/aosp@122156", |
453 }, | 458 }, |
454 } | 459 } |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 "pattern": ".", | 548 "pattern": ".", |
544 "action": ["python", "src/build/util/lastchange.py", | 549 "action": ["python", "src/build/util/lastchange.py", |
545 "-o", "src/build/util/LASTCHANGE"], | 550 "-o", "src/build/util/LASTCHANGE"], |
546 }, | 551 }, |
547 { | 552 { |
548 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 553 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
549 "pattern": ".", | 554 "pattern": ".", |
550 "action": ["python", "src/build/gyp_chromium"], | 555 "action": ["python", "src/build/gyp_chromium"], |
551 }, | 556 }, |
552 ] | 557 ] |
OLD | NEW |