DEPS 8.0 KB
Newer Older
A
Adam Barth 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# This file is automatically processed to create .DEPS.git which is the file
# that gclient uses under git.
#
# See http://code.google.com/p/chromium/wiki/UsingGit
#
# To test manually, run:
#   python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
# where <gcliendir> is the absolute path to the directory containing the
# .gclient file (the parent of 'src').
#
# Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run
#   gclient sync
# Verify the thing happened you wanted. Then revert your .DEPS.git change
# DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically
# updated by a bot when you modify this one.
#
# When adding a new dependency, please update the top-level .gitignore file
# to list the dependency's destination directory.

vars = {
  'chromium_git': 'https://chromium.googlesource.com',
A
Adam Barth 已提交
22
  'fuchsia_git': 'https://fuchsia.googlesource.com',
23
  'skia_git': 'https://skia.googlesource.com',
24
  'github_git': 'https://github.com',
25
  'mojo_sdk_revision': '6b5fb1227c742f5ecc077486ebc029f2711c61fa',
A
Adam Barth 已提交
26
  'base_revision': 'b2412302ed4e45bfb47d7b5c0c3418077009e1ce',
27
  'skia_revision': '06a65e2799eaead18f778792801406aff4aec0d9',
C
Chinmay Garde 已提交
28 29 30

  # Note: When updating the Dart revision, ensure that all entries that are
  # dependencies of dart are also updated
31 32
  'dart_revision': '3b4854ac7d54e8dcbe48ac7b1698d4ec5cc703cd',
  'dart_boringssl_gen_revision': '62c20247d582444cb2804f9ea4e3abaa6e47f6a5',
33
  'dart_boringssl_revision': '8d343b44bbab829d1a28fdef650ca95f7db4412e',
34
  'dart_observatory_packages_revision': '26aad88f1c1915d39bbcbff3cad589e2402fdcf1',
35
  'dart_root_certificates_revision': 'aed07942ce98507d2be28cbd29e879525410c7fc',
A
Adam Barth 已提交
36

37
  'buildtools_revision': '1f4c1c3bd3bd4c991e6565a0dc509c8d8a3f90b4',
A
Adam Barth 已提交
38 39 40 41 42 43
}

# Only these hosts are allowed for dependencies in this DEPS file.
# If you need to add a new host, contact chrome infrastructure team.
allowed_hosts = [
  'chromium.googlesource.com',
A
Adam Barth 已提交
44
  'fuchsia.googlesource.com',
J
James Robinson 已提交
45
  'github.com',
46
  'skia.googlesource.com',
A
Adam Barth 已提交
47 48 49
]

deps = {
50
  'src': 'https://github.com/flutter/buildroot.git' + '@' + 'f0135c944330591d01ffd0c685fb7ecd82253497',
51

A
Adam Barth 已提交
52 53 54 55 56 57 58
   # Fuchsia compatibility
   #
   # The dependencies in this section should match the layout in the Fuchsia gn
   # build. Eventually, we'll manage these dependencies together with Fuchsia
   # and not have to specific specific hashes.

  'src/lib/ftl':
59
   Var('fuchsia_git') + '/ftl' + '@' + '9f51f24056554352b045fda338e9101c0e5af272',
A
Adam Barth 已提交
60

A
Adam Barth 已提交
61
  'src/lib/tonic':
62
   Var('fuchsia_git') + '/tonic' + '@' + '4214b35e02a1286a5fb98895d0c480fa0da10f6d',
A
Adam Barth 已提交
63

A
Adam Barth 已提交
64
  'src/lib/zip':
J
Jason Simmons 已提交
65
   Var('fuchsia_git') + '/zip' + '@' + '92dc87ca645fe8e9f5151ef6dac86d8311a7222f',
A
Adam Barth 已提交
66

67 68 69
  'src/mojo/public':
   Var('fuchsia_git') + '/mojo/public' + '@' + Var('mojo_sdk_revision'),

A
Adam Barth 已提交
70 71 72
  'src/third_party/gtest':
   Var('fuchsia_git') + '/third_party/gtest' + '@' + 'c00f82917331efbbd27124b537e4ccc915a02b72',

73 74 75
  'src/third_party/rapidjson':
   Var('fuchsia_git') + '/third_party/rapidjson' + '@' + '9defbb0209a534ffeb3a2b79d5ee440a77407292',

A
Adam Barth 已提交
76 77 78 79 80
   # Chromium-style
   #
   # As part of integrating with Fuchsia, we should eventually remove all these
   # Chromium-style dependencies.

81
  'src/base':
82
   Var('github_git') + '/flutter/base.git' + '@' +  Var('base_revision'),
83

A
Adam Barth 已提交
84
  'src/buildtools':
85
   Var('fuchsia_git') + '/buildtools' + '@' +  Var('buildtools_revision'),
A
Adam Barth 已提交
86

A
Adam Barth 已提交
87
  # TODO(abarth): Remove in favor of //third_party/gtest
A
Adam Barth 已提交
88
  'src/testing/gtest':
A
Adam Barth 已提交
89
   Var('chromium_git') + '/external/googletest.git' + '@' + '23574bf2333f834ff665f894c97bef8a5b33a0a9',
A
Adam Barth 已提交
90 91

  'src/testing/gmock':
A
Adam Barth 已提交
92
   Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f24565299976b936d1265cb6a271',
A
Adam Barth 已提交
93 94

  'src/third_party/icu':
A
Adam Barth 已提交
95
   Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'c3f79166089e5360c09e3053fce50e6e296c3204',
A
Adam Barth 已提交
96 97 98 99

  'src/dart':
    Var('chromium_git') + '/external/github.com/dart-lang/sdk.git' + '@' + Var('dart_revision'),

100 101 102 103 104
  'src/third_party/boringssl':
    Var('github_git') + '/dart-lang/boringssl_gen.git' + '@' + Var('dart_boringssl_gen_revision'),

  'src/third_party/boringssl/src':
   'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('dart_boringssl_revision'),
105

A
Adam Barth 已提交
106
  'src/dart/third_party/observatory_pub_packages':
107 108 109
   Var('chromium_git') +
   '/external/github.com/dart-lang/observatory_pub_packages' + '@' +
   Var('dart_observatory_packages_revision'),
A
Adam Barth 已提交
110

C
Chinmay Garde 已提交
111 112 113 114 115
  'src/dart/third_party/root_certificates':
   Var('chromium_git') +
   '/external/github.com/dart-lang/root_certificates' + '@' +
   Var('dart_root_certificates_revision'),

A
Adam Barth 已提交
116
  'src/third_party/skia':
117
   Var('skia_git') + '/skia.git' + '@' +  Var('skia_revision'),
A
Adam Barth 已提交
118

119
  'src/third_party/yasm/source/patched-yasm':
A
Adam Barth 已提交
120
   Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120cd8558ce62ee8672ebf3eb6f5216f909b',
121

122 123
  'src/third_party/libjpeg-turbo':
   Var('skia_git') + '/third_party/libjpeg-turbo.git' + '@' + 'debddedc75850bcdeb8a57258572f48b802a4bb3',
124 125 126 127

   # Headers for Vulkan 1.0
   'src/third_party/vulkan':
   Var('github_git') + '/KhronosGroup/Vulkan-Docs.git' + '@' + 'e29c2489e238509c41aeb8c7bce9d669a496344b',
A
Adam Barth 已提交
128 129
}

130 131 132 133
recursedeps = [
  'src/buildtools',
]

A
Adam Barth 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
deps_os = {
  'android': {
    'src/third_party/colorama/src':
     Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',

    'src/third_party/jsr-305/src':
        Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',

    'src/third_party/junit/src':
      Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1346b750c3209019f2e1',

    'src/third_party/mockito/src':
      Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'ed99a52e94a84bd7c467f2443b475a22fcc6ba8e',

    'src/third_party/robolectric/lib':
      Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b63c99a8b6967acdb42cbed0adb067c80efc810',

151 152
    'src/third_party/freetype2':
       Var('fuchsia_git') + '/third_party/freetype2' + '@' + '6cfcc4303b6fc7850f764e41f72a89d67e301f44',
A
Adam Barth 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
  },
}


hooks = [
  {
    # This clobbers when necessary (based on get_landmines.py). It must be the
    # first hook so that other things that get/generate into the output
    # directory will not subsequently be clobbered.
    'name': 'landmines',
    'pattern': '.',
    'action': [
        'python',
        'src/build/landmines.py',
    ],
  },
169 170 171 172 173 174 175 176
  {
    'name': 'download_android_tools',
    'pattern': '.',
    'action': [
        'python',
        'src/tools/android/download_android_tools.py',
    ],
  },
A
Adam Barth 已提交
177 178 179
  {
    'name': 'clang',
    'pattern': '.',
180
    'action': ['/bin/bash', 'src/buildtools/update.sh', '--toolchain', '--ninja', '--gn'],
A
Adam Barth 已提交
181
  },
182 183 184 185 186 187
  {
    # Pull dart sdk if needed
    'name': 'dart',
    'pattern': '.',
    'action': ['python', 'src/tools/dart/update.py'],
  },
A
Adam Barth 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  {
    # Update LASTCHANGE. This is also run by export_tarball.py in
    # src/tools/export_tarball - please keep them in sync.
    'name': 'lastchange',
    'pattern': '.',
    'action': ['python', 'src/build/util/lastchange.py',
               '-o', 'src/build/util/LASTCHANGE'],
  },
  # Pull binutils for linux, enabled debug fission for faster linking /
  # debugging when used with clang on Ubuntu Precise.
  # https://code.google.com/p/chromium/issues/detail?id=352046
  {
    'name': 'binutils',
    'pattern': 'src/third_party/binutils',
    'action': [
        'python',
        'src/third_party/binutils/download.py',
    ],
  },
  # Pull eu-strip binaries using checked-in hashes.
  {
    'name': 'eu-strip',
    'pattern': '.',
    'action': [ 'download_from_google_storage',
                '--no_resume',
213
                '--quiet',
A
Adam Barth 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
                '--platform=linux*',
                '--no_auth',
                '--bucket', 'chromium-eu-strip',
                '-s', 'src/build/linux/bin/eu-strip.sha1',
    ],
  },
  {
    # Ensure that we don't accidentally reference any .pyc files whose
    # corresponding .py files have already been deleted.
    'name': 'remove_stale_pyc_files',
    'pattern': 'src/tools/.*\\.py',
    'action': [
        'python',
        'src/tools/remove_stale_pyc_files.py',
        'src/tools',
    ],
  },
]