DEPS 6.3 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',
J
Jason Simmons 已提交
25
  'skia_revision': 'efa48d599de15d960d7335a4a93a6bbeb97d3c41',
C
Chinmay Garde 已提交
26

I
Ian Hickson 已提交
27 28 29 30
  # When updating the Dart revision, ensure that all entries that are
  # dependencies of Dart are also updated to match the entries in the
  # Dart SDK's DEPS file for that revision of Dart. The DEPS file for
  # Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS
31
  'dart_revision': '64ce51ce4bc3aa4248dba87c44775c9b84bd2b5d',
I
Ian Hickson 已提交
32
  # Dart calls the next one "boringssl_gen_rev"
33
  'dart_boringssl_gen_revision': '753224969dbe43dad29343146529727b5066c0f3',
I
Ian Hickson 已提交
34
  # Dart calls the next one "boringssl_rev"
35
  'dart_boringssl_revision': 'd519bf6be0b447fb80fbc539d4bff4479b5482a2',
I
Ian Hickson 已提交
36
  # Dart calls the next one "observatory_pub_packages_rev"
37
  'dart_observatory_packages_revision': '26aad88f1c1915d39bbcbff3cad589e2402fdcf1',
I
Ian Hickson 已提交
38
  # Dart calls the next one "root_certificates_rev"
39
  'dart_root_certificates_revision': 'a4c7c6f23a664a37bc1b6f15a819e3f2a292791a',
A
Adam Barth 已提交
40

41
  'buildtools_revision': 'c8db819853bcf8ce1635a8b7a395820f39b5a9fc',
A
Adam Barth 已提交
42 43 44 45 46 47
}

# 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 已提交
48
  'fuchsia.googlesource.com',
J
James Robinson 已提交
49
  'github.com',
50
  'skia.googlesource.com',
A
Adam Barth 已提交
51 52 53
]

deps = {
54
  'src': 'https://github.com/flutter/buildroot.git' + '@' + '49dc17e37e24ae153a3d2426c958254be1904562',
55

A
Adam Barth 已提交
56 57 58 59 60 61 62
   # 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':
63
   Var('fuchsia_git') + '/ftl' + '@' + 'f1357b6eaa9a23cffec1645dfeba610b5f926b1d',
A
Adam Barth 已提交
64

A
Adam Barth 已提交
65
  'src/lib/tonic':
A
Adam Barth 已提交
66
   Var('fuchsia_git') + '/tonic' + '@' + '5b3d521980ca00274ad7e67f9f8b203cd4b20039',
A
Adam Barth 已提交
67

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

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

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

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

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

  'src/third_party/icu':
A
Adam Barth 已提交
86
   Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'c3f79166089e5360c09e3053fce50e6e296c3204',
A
Adam Barth 已提交
87 88 89 90

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

91 92 93 94 95
  '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'),
96

A
Adam Barth 已提交
97
  'src/dart/third_party/observatory_pub_packages':
98 99 100
   Var('chromium_git') +
   '/external/github.com/dart-lang/observatory_pub_packages' + '@' +
   Var('dart_observatory_packages_revision'),
A
Adam Barth 已提交
101

102
  'src/third_party/root_certificates':
C
Chinmay Garde 已提交
103 104 105 106
   Var('chromium_git') +
   '/external/github.com/dart-lang/root_certificates' + '@' +
   Var('dart_root_certificates_revision'),

A
Adam Barth 已提交
107
  'src/third_party/skia':
108
   Var('skia_git') + '/skia.git' + '@' +  Var('skia_revision'),
A
Adam Barth 已提交
109

110 111
  'src/third_party/libjpeg-turbo':
   Var('skia_git') + '/third_party/libjpeg-turbo.git' + '@' + 'debddedc75850bcdeb8a57258572f48b802a4bb3',
112

113 114 115
  'src/third_party/gyp':
   Var('chromium_git') + '/external/gyp.git' + '@' + '6ee91ad8659871916f9aa840d42e1513befdf638',

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

121 122 123 124
recursedeps = [
  'src/buildtools',
]

A
Adam Barth 已提交
125 126 127 128 129
deps_os = {
  'android': {
    'src/third_party/colorama/src':
     Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',

130
    'src/third_party/freetype2':
131
       Var('fuchsia_git') + '/third_party/freetype2' + '@' + 'e23a030e9b43c648249477fdf7bf5305d2cc8f59',
A
Adam Barth 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
  },
}


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',
    ],
  },
148 149 150 151 152 153
  {
    # Update the Windows toolchain if necessary.
    'name': 'win_toolchain',
    'pattern': '.',
    'action': ['python', 'src/build/vs_toolchain.py', 'update'],
  },
154 155 156 157 158 159 160 161
  {
    'name': 'download_android_tools',
    'pattern': '.',
    'action': [
        'python',
        'src/tools/android/download_android_tools.py',
    ],
  },
A
Adam Barth 已提交
162
  {
163
    'name': 'buildtools',
A
Adam Barth 已提交
164
    'pattern': '.',
165 166 167 168 169 170 171
    'action': [
      'python',
      'src/tools/buildtools/update.py',
      '--ninja',
      '--gn',
      '--toolchain'
    ],
A
Adam Barth 已提交
172
  },
173 174 175 176 177 178
  {
    # Pull dart sdk if needed
    'name': 'dart',
    'pattern': '.',
    'action': ['python', 'src/tools/dart/update.py'],
  },
A
Adam Barth 已提交
179 180 181 182 183 184 185 186 187 188 189 190
  {
    # 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',
    ],
  },
]