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

Side by Side Diff: DEPS

Issue 1711953003: Adds the OCHamcrest library to the iOS build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix outputs. Created 4 years, 10 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df ca03bdc774da7ecbf974f6e2b84f43699a5', 332 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df ca03bdc774da7ecbf974f6e2b84f43699a5',
333 333
334 # ANGLE uses dEQP for GPU testing 334 # ANGLE uses dEQP for GPU testing
335 'src/third_party/deqp/src': 335 'src/third_party/deqp/src':
336 Var('deqp_url') + '@' + Var('deqp_revision'), 336 Var('deqp_url') + '@' + Var('deqp_revision'),
337 }, 337 },
338 'ios': { 338 'ios': {
339 'src/ios/third_party/gcdwebserver/src': 339 'src/ios/third_party/gcdwebserver/src':
340 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@ ' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', 340 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@ ' + '3d5fd0b8281a7224c057deb2d17709b5bea64836',
341 341
342 'src/ios/third_party/ochamcrest/src':
343 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '5b50930c66d1e537918a87eef0943d6750729dc5',
344
342 'src/third_party/google_toolbox_for_mac/src': 345 'src/third_party/google_toolbox_for_mac/src':
343 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac. git' + '@' + Var('google_toolbox_for_mac_revision'), 346 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac. git' + '@' + Var('google_toolbox_for_mac_revision'),
344 347
345 'src/third_party/nss': 348 'src/third_party/nss':
346 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), 349 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'),
347 350
348 # class-dump utility to generate header files for undocumented SDKs 351 # class-dump utility to generate header files for undocumented SDKs
349 'src/third_party/class-dump/src': 352 'src/third_party/class-dump/src':
350 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' + '978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', 353 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' + '978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc',
351 354
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 'src/tools', 836 'src/tools',
834 ], 837 ],
835 }, 838 },
836 { 839 {
837 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 840 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
838 'name': 'gyp', 841 'name': 'gyp',
839 'pattern': '.', 842 'pattern': '.',
840 'action': ['python', 'src/build/gyp_chromium'], 843 'action': ['python', 'src/build/gyp_chromium'],
841 }, 844 },
842 ] 845 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698