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

Side by Side Diff: DEPS

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Cardboard lib to v0.5.3 Created 5 years, 8 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
OLDNEW
1 # This file is used to manage the dependencies of the Chromium src repo. It is 1 # This file is used to manage the dependencies of the Chromium src repo. It is
2 # used by gclient to determine what version of each dependency to check out, and 2 # used by gclient to determine what version of each dependency to check out, and
3 # where. 3 # where.
4 # 4 #
5 # For more information, please refer to the official documentation: 5 # For more information, please refer to the official documentation:
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code
7 # 7 #
8 # When adding a new dependency, please update the top-level .gitignore file 8 # When adding a new dependency, please update the top-level .gitignore file
9 # to list the dependency's destination directory. 9 # to list the dependency's destination directory.
10 # 10 #
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 479
480 'src/third_party/robolectric/lib': 480 'src/third_party/robolectric/lib':
481 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6 3c99a8b6967acdb42cbed0adb067c80efc810', 481 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6 3c99a8b6967acdb42cbed0adb067c80efc810',
482 482
483 'src/third_party/lss': 483 'src/third_party/lss':
484 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'), 484 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'),
485 485
486 'src/third_party/requests/src': 486 'src/third_party/requests/src':
487 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + ' @' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', 487 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + ' @' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
488 488
489 'src/third_party/cardboard-java/src':
490 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.g it' + '@' + 'c2a953d093ef7b29b9b0a113c7d5d104fe5d188d',
491
489 }, 492 },
490 } 493 }
491 494
492 495
493 include_rules = [ 496 include_rules = [
494 # Everybody can use some things. 497 # Everybody can use some things.
495 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. 498 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these.
496 '+base', 499 '+base',
497 '+build', 500 '+build',
498 '+ipc', 501 '+ipc',
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 # corresponding .py files have already been deleted. 789 # corresponding .py files have already been deleted.
787 'name': 'remove_stale_pyc_files', 790 'name': 'remove_stale_pyc_files',
788 'pattern': 'src/tools/.*\\.py', 791 'pattern': 'src/tools/.*\\.py',
789 'action': [ 792 'action': [
790 'python', 793 'python',
791 'src/tools/remove_stale_pyc_files.py', 794 'src/tools/remove_stale_pyc_files.py',
792 'src/tools', 795 'src/tools',
793 ], 796 ],
794 }, 797 },
795 ] 798 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698