(self, build_dir, target, runtime_deps)
| 891 | return possible_runtime_deps_rpaths |
| 892 | |
| 893 | def WriteIsolateFiles(self, build_dir, target, runtime_deps): |
| 894 | isolate_path = self.ToAbsPath(build_dir, target + '.isolate') |
| 895 | self.WriteFile(isolate_path, |
| 896 | pprint.pformat({ |
| 897 | 'variables': { |
| 898 | 'files': sorted(runtime_deps), |
| 899 | } |
| 900 | }) + '\n') |
| 901 | |
| 902 | self.WriteJSON( |
| 903 | { |
| 904 | 'args': [ |
| 905 | '--isolate', |
| 906 | self.ToSrcRelPath('%s/%s.isolate' % (build_dir, target)), |
| 907 | ], |
| 908 | 'dir': self.chromium_src_dir, |
| 909 | 'version': 1, |
| 910 | }, |
| 911 | isolate_path + 'd.gen.json', |
| 912 | ) |
| 913 | |
| 914 | def MapTargetsToLabels(self, isolate_map, targets): |
| 915 | labels = [] |
no test coverage detected