From 72e8a76352e17e7455fe320ba5e135688f25446c Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Tue, 6 Jun 2017 17:04:40 -0700 Subject: [PATCH] Add iOS build tooling dependency (#3747) This adds a dependency on the Chromium iOS build tooling to support deterministic selection of Xcode version on the Mac_Engine build bots. --- DEPS | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DEPS b/DEPS index 018291052..97ad8ab1f 100644 --- a/DEPS +++ b/DEPS @@ -38,6 +38,9 @@ vars = { # Dart calls the next one "root_certificates_rev" 'dart_root_certificates_revision': 'a4c7c6f23a664a37bc1b6f15a819e3f2a292791a', + # Build bot tooling for iOS + 'ios_tools_revision': '69b7c1b160e7107a6a98d948363772dc9caea46f', + 'buildtools_revision': 'c8db819853bcf8ce1635a8b7a395820f39b5a9fc', } @@ -82,6 +85,9 @@ deps = { 'src/buildtools': Var('fuchsia_git') + '/buildtools' + '@' + Var('buildtools_revision'), + 'src/ios_tools': + Var('chromium_git') + '/chromium/src/ios.git' + '@' + Var('ios_tools_revision'), + 'src/third_party/icu': Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'c3f79166089e5360c09e3053fce50e6e296c3204', -- GitLab