Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 Google Inc. All Rights Reserved. | 1 # Copyright 2014 Google Inc. All Rights Reserved. |
|
grt (UTC plus 2)
2017/03/22 13:48:13
was this file originally committed in 2017?
ftirelo
2017/03/22 14:25:36
:-)
Also changed authorship to Chromium. Will fix
| |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 # See the License for the specific language governing permissions and | 12 # See the License for the specific language governing permissions and |
| 13 # limitations under the License. | 13 # limitations under the License. |
| 14 | 14 |
| 15 vars = { | 15 vars = { |
| 16 # Name of the directory to which the repository is pulled in. | 16 # Name of the directory to which the repository is pulled in. |
| 17 "root": "src", | 17 "root": "src", |
| 18 # This is expected to be Python 2.7 from depot_tools. | 18 # This is expected to be Python 2.7 from depot_tools. |
| 19 "python_path": "python", | 19 "python_path": "python", |
| 20 | 20 |
| 21 "chromium_git": "https://chromium.googlesource.com", | 21 "chromium_git": "https://chromium.googlesource.com", |
| 22 | |
| 22 "buildtools_revision": "a7cc7a3e21a061975b33dcdcd81a9716ba614c3c", | 23 "buildtools_revision": "a7cc7a3e21a061975b33dcdcd81a9716ba614c3c", |
| 24 "catapult_revision": "e9f547be045d4e50cb2d4927261d500e425c364c", | |
| 23 "icu_revision": "9cd2828740572ba6f694b9365236a8356fd06147", | 25 "icu_revision": "9cd2828740572ba6f694b9365236a8356fd06147", |
| 24 } | 26 } |
| 25 | 27 |
| 26 deps = { | 28 deps = { |
| 27 Var("root") + "/buildtools": | 29 Var("root") + "/buildtools": |
| 28 (Var('chromium_git') + '/chromium/buildtools.git' + '@' + | 30 (Var('chromium_git') + '/chromium/buildtools.git' + '@' + |
| 29 Var('buildtools_revision')), | 31 Var('buildtools_revision')), |
| 32 Var("root") + "/third_party/catapult": | |
| 33 Var('chromium_git') + | |
| 34 '/external/github.com/catapult-project/catapult.git' + '@' + | |
| 35 Var('catapult_revision'), | |
| 30 Var("root") + "/third_party/icu": | 36 Var("root") + "/third_party/icu": |
| 31 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + Var('icu_revision'), | 37 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + Var('icu_revision'), |
| 32 } | 38 } |
| 33 | 39 |
| 34 include_rules = [ | 40 include_rules = [ |
| 35 ] | 41 ] |
| 36 | 42 |
| 37 hooks = [ | 43 hooks = [ |
| 38 { | 44 { |
| 39 "name": "run_gitdeps", | 45 "name": "run_gitdeps", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 77 "pattern": ".", | 83 "pattern": ".", |
| 78 "action": ["download_from_google_storage", | 84 "action": ["download_from_google_storage", |
| 79 "--no_resume", | 85 "--no_resume", |
| 80 "--platform=win32", | 86 "--platform=win32", |
| 81 "--no_auth", | 87 "--no_auth", |
| 82 "--bucket", "chromium-clang-format", | 88 "--bucket", "chromium-clang-format", |
| 83 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1", | 89 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1", |
| 84 ], | 90 ], |
| 85 }, | 91 }, |
| 86 ] | 92 ] |
| OLD | NEW |