| OLD | NEW |
| 1 # Copyright 2014 Google Inc. All Rights Reserved. | 1 # Copyright 2014 Google Inc. All Rights Reserved. |
| 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, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 30 include_rules = [ | 30 include_rules = [ |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 hooks = [ | 33 hooks = [ |
| 34 { | 34 { |
| 35 "name": "run_gitdeps", | 35 "name": "run_gitdeps", |
| 36 "pattern": ".", | 36 "pattern": ".", |
| 37 "action": [Var("python_path"), | 37 "action": [Var("python_path"), |
| 38 Var("root") + "/pipa/build/gitdeps.py", | 38 Var("root") + "/pipa/py/gitdeps.py", |
| 39 Var("root") + "/GITDEPS", | 39 Var("root") + "/GITDEPS", |
| 40 "--output-dir=" + Var("root"), | 40 "--output-dir=" + Var("root"), |
| 41 "--cache-dir", Var("root") + "/.gitdeps-cache"], | 41 "--cache-dir", Var("root") + "/.gitdeps-cache"], |
| 42 }, | 42 }, |
| 43 # Pull GN binaries. This needs to be before running GN below. | 43 # Pull GN binaries. This needs to be before running GN below. |
| 44 { | 44 { |
| 45 "name": "gn_win", | 45 "name": "gn_win", |
| 46 "pattern": ".", | 46 "pattern": ".", |
| 47 "action": [ "download_from_google_storage", | 47 "action": [ "download_from_google_storage", |
| 48 "--no_resume", | 48 "--no_resume", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 67 "pattern": ".", | 67 "pattern": ".", |
| 68 "action": ["download_from_google_storage", | 68 "action": ["download_from_google_storage", |
| 69 "--no_resume", | 69 "--no_resume", |
| 70 "--platform=win32", | 70 "--platform=win32", |
| 71 "--no_auth", | 71 "--no_auth", |
| 72 "--bucket", "chromium-clang-format", | 72 "--bucket", "chromium-clang-format", |
| 73 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1", | 73 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1", |
| 74 ], | 74 ], |
| 75 }, | 75 }, |
| 76 ] | 76 ] |
| OLD | NEW |