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

Side by Side Diff: DEPS

Issue 2659493002: Replace src/ios copy with DEPS mirror. (Closed)
Patch Set: Rebased Created 3 years, 11 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
« no previous file with comments | « no previous file | ios/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file contains dependencies for WebRTC. 1 # This file contains dependencies for WebRTC.
2 2
3 vars = { 3 vars = {
4 'chromium_git': 'https://chromium.googlesource.com', 4 'chromium_git': 'https://chromium.googlesource.com',
5 'chromium_revision': 'c755988946c0b539cc61cc55d38ae056e0356c27', 5 'chromium_revision': 'c755988946c0b539cc61cc55d38ae056e0356c27',
6 'boringssl_git': 'https://boringssl.googlesource.com', 6 'boringssl_git': 'https://boringssl.googlesource.com',
7 # Three lines of non-changing comments so that 7 # Three lines of non-changing comments so that
8 # the commit queue can handle CLs rolling swarming_client 8 # the commit queue can handle CLs rolling swarming_client
9 # and whatever else without interference from each other. 9 # and whatever else without interference from each other.
10 'swarming_revision': 'ebc8dab6f8b8d79ec221c94de39a921145abd404', 10 'swarming_revision': 'ebc8dab6f8b8d79ec221c94de39a921145abd404',
(...skipping 25 matching lines...) Expand all
36 36
37 deps = { 37 deps = {
38 # TODO(kjellander): Move this to be Android-only once the libevent dependency 38 # TODO(kjellander): Move this to be Android-only once the libevent dependency
39 # in base/third_party/libevent is solved. 39 # in base/third_party/libevent is solved.
40 'src/base': 40 'src/base':
41 Var('chromium_git') + '/chromium/src/base' + '@' + 'eacf0248426ad9032a9dd0c9 80eb1d9aa1a45f40', 41 Var('chromium_git') + '/chromium/src/base' + '@' + 'eacf0248426ad9032a9dd0c9 80eb1d9aa1a45f40',
42 'src/build': 42 'src/build':
43 Var('chromium_git') + '/chromium/src/build' + '@' + '6f17189f6eafdffbe6a5a64 6b85fe0f0440cd406', 43 Var('chromium_git') + '/chromium/src/build' + '@' + '6f17189f6eafdffbe6a5a64 6b85fe0f0440cd406',
44 'src/buildtools': 44 'src/buildtools':
45 Var('chromium_git') + '/chromium/buildtools.git' + '@' + 'a7cc7a3e21a061975b 33dcdcd81a9716ba614c3c', 45 Var('chromium_git') + '/chromium/buildtools.git' + '@' + 'a7cc7a3e21a061975b 33dcdcd81a9716ba614c3c',
46 'src/ios':
kthelgason 2017/01/26 14:45:34 Shouldn't this be down in `deps_os`? No need to pu
kjellander_webrtc 2017/01/26 15:11:10 Yes it seems to work. I was afraid it wouldn't due
47 Var('chromium_git') + '/chromium/src/ios' + '@' + '44a908d160175dd44c8a66c66 d912066bcb364fd',
46 'src/testing': 48 'src/testing':
47 Var('chromium_git') + '/chromium/src/testing' + '@' + 'b9561eff5941f4c762ee8 a33c0b768b397f5f3c9', 49 Var('chromium_git') + '/chromium/src/testing' + '@' + 'b9561eff5941f4c762ee8 a33c0b768b397f5f3c9',
48 'src/testing/gtest': 50 'src/testing/gtest':
49 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + ' 6f8a66431cb592dad629028a50b3dd418a408c87', 51 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + ' 6f8a66431cb592dad629028a50b3dd418a408c87',
50 'src/testing/gmock': 52 'src/testing/gmock':
51 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e1 02c9c332ce19a33faf75be', # from svn revision 566 53 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e1 02c9c332ce19a33faf75be', # from svn revision 566
52 'src/third_party': 54 'src/third_party':
53 Var('chromium_git') + '/chromium/src/third_party' + '@' + 'c13a9b4abc5d99cd0 1cff12258a5d67fb890ae80', 55 Var('chromium_git') + '/chromium/src/third_party' + '@' + 'c13a9b4abc5d99cd0 1cff12258a5d67fb890ae80',
54 'src/third_party/boringssl/src': 56 'src/third_party/boringssl/src':
55 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), 57 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 }, 525 },
524 ] 526 ]
525 527
526 recursedeps = [ 528 recursedeps = [
527 # buildtools provides clang_format, libc++, and libc++abi. 529 # buildtools provides clang_format, libc++, and libc++abi.
528 'src/buildtools', 530 'src/buildtools',
529 # android_tools manages the NDK. 531 # android_tools manages the NDK.
530 'src/third_party/android_tools', 532 'src/third_party/android_tools',
531 ] 533 ]
532 534
OLDNEW
« no previous file with comments | « no previous file | ios/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698