(args)
| 847 | |
| 848 | @staticmethod |
| 849 | def ReadBuildConfig(args): |
| 850 | config_path = os.path.join(args.shell_dir, 'v8_build_config.json') |
| 851 | if not os.path.isfile(config_path): |
| 852 | return {} |
| 853 | with open(config_path) as f: |
| 854 | return hjson.load(f) |
| 855 | |
| 856 | @staticmethod |
| 857 | def GetPlatform(args): |
no test coverage detected