| # Copyright (C) 2006-2021 Apple Inc. All rights reserved. | 
 | # | 
 | # Redistribution and use in source and binary forms, with or without | 
 | # modification, are permitted provided that the following conditions | 
 | # are met: | 
 | # | 
 | # 1.  Redistributions of source code must retain the above copyright | 
 | #     notice, this list of conditions and the following disclaimer. | 
 | # 2.  Redistributions in binary form must reproduce the above copyright | 
 | #     notice, this list of conditions and the following disclaimer in the | 
 | #     documentation and/or other materials provided with the distribution. | 
 | # 3.  Neither the name of Apple Inc. ("Apple") nor the names of | 
 | #     its contributors may be used to endorse or promote products derived | 
 | #     from this software without specific prior written permission. | 
 | # | 
 | # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | 
 | # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
 | # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
 | # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 
 | # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
 | # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
 | # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
 | # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
 |  | 
 | # Workaround for rdar://84212106. | 
 | find_tool = $(realpath $(shell xcrun --sdk $(SDK_NAME) -f $(1))) | 
 |  | 
 | PYTHON := $(call find_tool,python3) | 
 | PERL := perl | 
 | RUBY := ruby | 
 | DELETE := rm -f | 
 |  | 
 | ifneq ($(SDKROOT),) | 
 |     SDK_FLAGS = -isysroot $(SDKROOT) | 
 | endif | 
 |  | 
 | ifeq ($(USE_LLVM_TARGET_TRIPLES_FOR_CLANG),YES) | 
 |     WK_CURRENT_ARCH = $(word 1, $(ARCHS)) | 
 |     TARGET_TRIPLE_FLAGS = -target $(WK_CURRENT_ARCH)-$(LLVM_TARGET_TRIPLE_VENDOR)-$(LLVM_TARGET_TRIPLE_OS_VERSION)$(LLVM_TARGET_TRIPLE_SUFFIX) | 
 | endif | 
 |  | 
 | FRAMEWORK_FLAGS := $(shell echo $(BUILT_PRODUCTS_DIR) $(FRAMEWORK_SEARCH_PATHS) $(SYSTEM_FRAMEWORK_SEARCH_PATHS) | $(PERL) -e 'print "-F " . join(" -F ", split(" ", <>));') | 
 | HEADER_FLAGS := $(shell echo $(BUILT_PRODUCTS_DIR) $(HEADER_SEARCH_PATHS) $(SYSTEM_HEADER_SEARCH_PATHS) | $(PERL) -e 'print "-I" . join(" -I", split(" ", <>));') | 
 |  | 
 | platform_h_compiler_command = $(CC) -std=c++2a -x c++ $(1) $(SDK_FLAGS) $(TARGET_TRIPLE_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | 
 |  | 
 | FEATURE_AND_PLATFORM_DEFINES := $(shell $(call platform_h_compiler_command,-E -P -dM) | $(PERL) -ne "print if s/\#define ((HAVE_|USE_|ENABLE_|WTF_PLATFORM_)\w+) 1/\1/") | 
 |  | 
 | PLATFORM_HEADER_DIR := $(realpath $(BUILT_PRODUCTS_DIR)/usr/local/include) | 
 | PLATFORM_HEADER_DEPENDENCIES := $(filter $(PLATFORM_HEADER_DIR)/%,$(realpath $(shell $(call platform_h_compiler_command,-M) | $(PERL) -e "local \$$/; my (\$$target, \$$deps) = split(/:/, <>); print split(/\\\\/, \$$deps);"))) | 
 | FEATURE_AND_PLATFORM_DEFINE_DEPENDENCIES = DerivedSources.make $(PLATFORM_HEADER_DEPENDENCIES) | 
 |  | 
 | # -------- | 
 |  | 
 | VPATH = \ | 
 |     $(JavaScriptCore) \ | 
 |     $(JavaScriptCore)/parser \ | 
 |     $(JavaScriptCore)/runtime \ | 
 |     $(JavaScriptCore)/interpreter \ | 
 |     $(JavaScriptCore)/jit \ | 
 |     $(JavaScriptCore)/builtins \ | 
 |     $(JavaScriptCore)/wasm/js \ | 
 | # | 
 |  | 
 | JavaScriptCore_SCRIPTS_DIR = $(JavaScriptCore)/Scripts | 
 |  | 
 | .PHONY : all | 
 | all : \ | 
 |     InjectedScriptSource.h \ | 
 |     Lexer.lut.h \ | 
 |     KeywordLookup.h \ | 
 |     RegExpJitTables.h \ | 
 |     UnicodePatternTables.h \ | 
 |     yarr/YarrCanonicalizeUnicode.cpp \ | 
 |     WasmOps.h \ | 
 |     WasmB3IRGeneratorInlines.h \ | 
 | # | 
 |  | 
 | # JavaScript builtins. | 
 |  | 
 | JSC_BUILTINS_FILES = JSCBuiltins.h JSCBuiltins.cpp | 
 |  | 
 | all : $(JSC_BUILTINS_FILES) | 
 |  | 
 | BUILTINS_GENERATOR_SCRIPTS = \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/__init__.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/wkbuiltins.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generator.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_model.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_templates.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_combined_header.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_combined_implementation.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_separate_header.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_separate_implementation.py \ | 
 |     ${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_wrapper_header.py \ | 
 |     ${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_wrapper_implementation.py \ | 
 |     ${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_internals_wrapper_header.py \ | 
 |     ${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_internals_wrapper_implementation.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/generate-js-builtins.py \ | 
 |     $(JavaScriptCore_SCRIPTS_DIR)/lazywriter.py \ | 
 | # | 
 |  | 
 | JavaScriptCore_BUILTINS_SOURCES = \ | 
 |     $(JavaScriptCore)/builtins/AsyncFromSyncIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/ArrayConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/ArrayIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/ArrayPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/AsyncIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/AsyncFunctionPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/AsyncGeneratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/DatePrototype.js \ | 
 |     $(JavaScriptCore)/builtins/FunctionPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/GeneratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/GlobalObject.js \ | 
 |     $(JavaScriptCore)/builtins/GlobalOperations.js \ | 
 |     $(JavaScriptCore)/builtins/InternalPromiseConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/IteratorHelpers.js \ | 
 |     $(JavaScriptCore)/builtins/IteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/MapIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/MapPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/ModuleLoader.js \ | 
 |     $(JavaScriptCore)/builtins/NumberConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/ObjectConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/PromiseConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/PromiseOperations.js \ | 
 |     $(JavaScriptCore)/builtins/PromisePrototype.js \ | 
 |     $(JavaScriptCore)/builtins/ReflectObject.js \ | 
 |     $(JavaScriptCore)/builtins/RegExpPrototype.js \ | 
 |     ${JavaScriptCore}/builtins/RegExpStringIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/SetIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/SetPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/ShadowRealmPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/StringConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/StringIteratorPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/StringPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/TypedArrayConstructor.js \ | 
 |     $(JavaScriptCore)/builtins/TypedArrayPrototype.js \ | 
 |     $(JavaScriptCore)/builtins/WebAssembly.js \ | 
 | # | 
 |  | 
 | # The combined output file depends on the contents of builtins and generator scripts, so | 
 | # adding, modifying, or removing builtins or scripts will trigger regeneration of files. | 
 |  | 
 | JavaScriptCore_BUILTINS_DEPENDENCIES_LIST : $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py DerivedSources.make | 
 | 	$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py '$(JavaScriptCore_BUILTINS_SOURCES) $(BUILTINS_GENERATOR_SCRIPTS)' $@ | 
 |  | 
 | JSC_BUILTINS_FILES_PATTERNS = $(subst .,%,$(JSC_BUILTINS_FILES)) | 
 |  | 
 | $(JSC_BUILTINS_FILES_PATTERNS) : $(BUILTINS_GENERATOR_SCRIPTS) $(JavaScriptCore_BUILTINS_SOURCES) JavaScriptCore_BUILTINS_DEPENDENCIES_LIST | 
 | 	$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/generate-js-builtins.py --combined --output-directory . --framework JavaScriptCore $(JavaScriptCore_BUILTINS_SOURCES) | 
 |  | 
 | # Perfect hash lookup tables for JavaScript classes. | 
 |  | 
 | OBJECT_LUT_HEADERS = \ | 
 |     AsyncFromSyncIteratorPrototype.lut.h \ | 
 |     ArrayConstructor.lut.h \ | 
 |     AsyncGeneratorPrototype.lut.h \ | 
 |     BigIntConstructor.lut.h \ | 
 |     BigIntPrototype.lut.h \ | 
 |     BooleanPrototype.lut.h \ | 
 |     DateConstructor.lut.h \ | 
 |     DatePrototype.lut.h \ | 
 |     ErrorPrototype.lut.h \ | 
 |     GeneratorPrototype.lut.h \ | 
 |     IntlCollatorConstructor.lut.h \ | 
 |     IntlCollatorPrototype.lut.h \ | 
 |     IntlDateTimeFormatConstructor.lut.h \ | 
 |     IntlDateTimeFormatPrototype.lut.h \ | 
 |     IntlDisplayNamesConstructor.lut.h \ | 
 |     IntlDisplayNamesPrototype.lut.h \ | 
 |     IntlListFormatConstructor.lut.h \ | 
 |     IntlListFormatPrototype.lut.h \ | 
 |     IntlLocalePrototype.lut.h \ | 
 |     IntlNumberFormatConstructor.lut.h \ | 
 |     IntlNumberFormatPrototype.lut.h \ | 
 |     IntlObject.lut.h \ | 
 |     IntlPluralRulesConstructor.lut.h \ | 
 |     IntlPluralRulesPrototype.lut.h \ | 
 |     IntlRelativeTimeFormatConstructor.lut.h \ | 
 |     IntlRelativeTimeFormatPrototype.lut.h \ | 
 |     IntlSegmentIteratorPrototype.lut.h \ | 
 |     IntlSegmenterConstructor.lut.h \ | 
 |     IntlSegmenterPrototype.lut.h \ | 
 |     IntlSegmentsPrototype.lut.h \ | 
 |     JSDataViewPrototype.lut.h \ | 
 |     JSGlobalObject.lut.h \ | 
 |     JSInternalPromiseConstructor.lut.h \ | 
 |     JSModuleLoader.lut.h \ | 
 |     JSONObject.lut.h \ | 
 |     JSPromiseConstructor.lut.h \ | 
 |     JSPromisePrototype.lut.h \ | 
 |     JSWebAssembly.lut.h \ | 
 |     MapPrototype.lut.h \ | 
 |     NumberConstructor.lut.h \ | 
 |     NumberPrototype.lut.h \ | 
 |     ObjectConstructor.lut.h \ | 
 |     ReflectObject.lut.h \ | 
 |     RegExpConstructor.lut.h \ | 
 |     SetPrototype.lut.h \ | 
 |     ShadowRealmPrototype.lut.h \ | 
 |     StringConstructor.lut.h \ | 
 |     StringPrototype.lut.h \ | 
 |     SymbolConstructor.lut.h \ | 
 |     SymbolPrototype.lut.h \ | 
 |     TemporalCalendarConstructor.lut.h \ | 
 |     TemporalCalendarPrototype.lut.h \ | 
 |     TemporalDurationConstructor.lut.h \ | 
 |     TemporalDurationPrototype.lut.h \ | 
 |     TemporalInstantConstructor.lut.h \ | 
 |     TemporalInstantPrototype.lut.h \ | 
 |     TemporalNow.lut.h \ | 
 |     TemporalObject.lut.h \ | 
 |     TemporalPlainDateConstructor.lut.h \ | 
 |     TemporalPlainDatePrototype.lut.h \ | 
 |     TemporalPlainTimeConstructor.lut.h \ | 
 |     TemporalPlainTimePrototype.lut.h \ | 
 |     TemporalTimeZoneConstructor.lut.h \ | 
 |     TemporalTimeZonePrototype.lut.h \ | 
 |     WebAssemblyCompileErrorConstructor.lut.h \ | 
 |     WebAssemblyCompileErrorPrototype.lut.h \ | 
 |     WebAssemblyExceptionConstructor.lut.h \ | 
 |     WebAssemblyExceptionPrototype.lut.h \ | 
 |     WebAssemblyGlobalConstructor.lut.h \ | 
 |     WebAssemblyGlobalPrototype.lut.h \ | 
 |     WebAssemblyInstanceConstructor.lut.h \ | 
 |     WebAssemblyInstancePrototype.lut.h \ | 
 |     WebAssemblyLinkErrorConstructor.lut.h \ | 
 |     WebAssemblyLinkErrorPrototype.lut.h \ | 
 |     WebAssemblyMemoryConstructor.lut.h \ | 
 |     WebAssemblyMemoryPrototype.lut.h \ | 
 |     WebAssemblyModuleConstructor.lut.h \ | 
 |     WebAssemblyModulePrototype.lut.h \ | 
 |     WebAssemblyRuntimeErrorConstructor.lut.h \ | 
 |     WebAssemblyRuntimeErrorPrototype.lut.h \ | 
 |     WebAssemblyTableConstructor.lut.h \ | 
 |     WebAssemblyTablePrototype.lut.h \ | 
 |     WebAssemblyTagConstructor.lut.h \ | 
 |     WebAssemblyTagPrototype.lut.h \ | 
 | # | 
 |  | 
 | $(OBJECT_LUT_HEADERS): %.lut.h : %.cpp $(JavaScriptCore)/create_hash_table | 
 | 	$(PERL) $(JavaScriptCore)/create_hash_table $< > $@ | 
 |  | 
 | Lexer.lut.h: Keywords.table $(JavaScriptCore)/create_hash_table | 
 | 	$(PERL) $(JavaScriptCore)/create_hash_table $< > $@ | 
 |  | 
 | # character tables for Yarr | 
 |  | 
 | RegExpJitTables.h: yarr/create_regex_tables | 
 | 	$(PYTHON) $^ > $@ | 
 |  | 
 | KeywordLookup.h: KeywordLookupGenerator.py Keywords.table | 
 | 	$(PYTHON) $^ > $@ | 
 |  | 
 | # Bytecode files | 
 |  | 
 | BYTECODE_FILES = \ | 
 |     Bytecodes.h \ | 
 |     BytecodeIndices.h \ | 
 |     BytecodeStructs.h \ | 
 |     InitBytecodes.asm \ | 
 |     WasmLLIntGeneratorInlines.h \ | 
 |     InitWasm.asm \ | 
 |     BytecodeDumperGenerated.cpp \ | 
 | # | 
 | BYTECODE_FILES_PATTERNS = $(subst .,%,$(BYTECODE_FILES)) | 
 |  | 
 | all : $(BYTECODE_FILES) | 
 |  | 
 | $(BYTECODE_FILES_PATTERNS): $(wildcard $(JavaScriptCore)/generator/*.rb) $(JavaScriptCore)/bytecode/BytecodeList.rb $(JavaScriptCore)/wasm/wasm.json | 
 | 	$(RUBY) $(JavaScriptCore)/generator/main.rb $(JavaScriptCore)/bytecode/BytecodeList.rb \ | 
 |     --bytecode_structs_h BytecodeStructs.h \ | 
 |     --init_bytecodes_asm InitBytecodes.asm \ | 
 |     --bytecodes_h Bytecodes.h \ | 
 |     --bytecode_indices_h BytecodeIndices.h \ | 
 |     --wasm_json $(JavaScriptCore)/wasm/wasm.json \ | 
 |     --wasm_llint_generator_h WasmLLIntGeneratorInlines.h \ | 
 |     --init_wasm_llint InitWasm.asm \ | 
 |     --bytecode_dumper BytecodeDumperGenerated.cpp \ | 
 |  | 
 | # Inspector interfaces | 
 |  | 
 | INSPECTOR_DOMAINS := \ | 
 |     $(JavaScriptCore)/inspector/protocol/Animation.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/ApplicationCache.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Audit.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Browser.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/CPUProfiler.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/CSS.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Canvas.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Console.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/DOM.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/DOMDebugger.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/DOMStorage.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Database.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Debugger.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/GenericTypes.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Heap.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/IndexedDB.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Inspector.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/LayerTree.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Memory.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Network.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Page.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Recording.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Runtime.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/ScriptProfiler.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Security.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/ServiceWorker.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Target.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Timeline.json \ | 
 |     $(JavaScriptCore)/inspector/protocol/Worker.json \ | 
 | # | 
 |  | 
 | INSPECTOR_GENERATOR_SCRIPTS = \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/__init__.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/cpp_generator_templates.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/cpp_generator.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_backend_dispatcher_header.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_backend_dispatcher_implementation.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_frontend_dispatcher_header.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_frontend_dispatcher_implementation.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_protocol_types_header.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_protocol_types_implementation.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generate_js_backend_commands.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generator_templates.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/generator.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/models.py \ | 
 | 	$(JavaScriptCore)/inspector/scripts/codegen/preprocess.pl \ | 
 | 	$(JavaScriptCore)/inspector/scripts/generate-inspector-protocol-bindings.py \ | 
 | 	$(JavaScriptCore_SCRIPTS_DIR)/generate-combined-inspector-json.py \ | 
 | # | 
 |  | 
 | # TODO: Is there some way to not hardcode this? Can we get it from | 
 | # generate-inspector-protocol-bindings.py and ./CombinedDomains.json? | 
 | INSPECTOR_DISPATCHER_FILES = \ | 
 |     inspector/InspectorAlternateBackendDispatchers.h \ | 
 |     inspector/InspectorBackendDispatchers.cpp \ | 
 |     inspector/InspectorBackendDispatchers.h \ | 
 |     inspector/InspectorFrontendDispatchers.cpp \ | 
 |     inspector/InspectorFrontendDispatchers.h \ | 
 |     inspector/InspectorProtocolObjects.cpp \ | 
 |     inspector/InspectorProtocolObjects.h \ | 
 | # | 
 | INSPECTOR_DISPATCHER_FILES_PATTERNS = $(subst .,%,$(INSPECTOR_DISPATCHER_FILES)) | 
 |  | 
 | all : $(INSPECTOR_DISPATCHER_FILES) inspector/InspectorBackendCommands.js | 
 |  | 
 | # The combined JSON file depends on the actual set of domains and their file contents, so that | 
 | # adding, modifying, or removing domains will trigger regeneration of inspector files. | 
 |  | 
 | .PHONY: force | 
 | EnabledInspectorDomains : $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py force | 
 | 	$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py '$(INSPECTOR_DOMAINS)' $@ | 
 |  | 
 | CombinedDomains.json : $(JavaScriptCore_SCRIPTS_DIR)/generate-combined-inspector-json.py $(INSPECTOR_DOMAINS) EnabledInspectorDomains | 
 | 	$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/generate-combined-inspector-json.py $(INSPECTOR_DOMAINS) > ./CombinedDomains.json | 
 |  | 
 | # Inspector Backend Dispatchers, Frontend Dispatchers, Type Builders | 
 | $(INSPECTOR_DISPATCHER_FILES_PATTERNS) : CombinedDomains.json $(INSPECTOR_GENERATOR_SCRIPTS) | 
 | 	$(PYTHON) $(JavaScriptCore)/inspector/scripts/generate-inspector-protocol-bindings.py --framework JavaScriptCore --outputDir inspector ./CombinedDomains.json | 
 |  | 
 | inspector/InspectorBackendCommands.js : CombinedDomains.json $(INSPECTOR_GENERATOR_SCRIPTS) $(FEATURE_AND_PLATFORM_DEFINE_DEPENDENCIES) | 
 | 	$(PYTHON) $(JavaScriptCore)/inspector/scripts/generate-inspector-protocol-bindings.py --framework WebInspectorUI --outputDir inspector ./CombinedDomains.json | 
 | 	@echo Pre-processing InspectorBackendCommands... | 
 | 	$(PERL) $(JavaScriptCore)/inspector/scripts/codegen/preprocess.pl --input inspector/InspectorBackendCommands.js.in --defines "$(FEATURE_AND_PLATFORM_DEFINES)" --output inspector/InspectorBackendCommands.js | 
 | 	$(DELETE) inspector/InspectorBackendCommands.js.in | 
 |  | 
 | InjectedScriptSource.h : inspector/InjectedScriptSource.js $(JavaScriptCore_SCRIPTS_DIR)/jsmin.py $(JavaScriptCore_SCRIPTS_DIR)/xxd.pl | 
 | 	echo "//# sourceURL=__InjectedScript_InjectedScriptSource.js" > ./InjectedScriptSource.min.js | 
 | 	$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/jsmin.py < $(JavaScriptCore)/inspector/InjectedScriptSource.js >> ./InjectedScriptSource.min.js | 
 | 	$(PERL) $(JavaScriptCore_SCRIPTS_DIR)/xxd.pl InjectedScriptSource_js ./InjectedScriptSource.min.js InjectedScriptSource.h | 
 | 	$(DELETE) InjectedScriptSource.min.js | 
 |  | 
 | AIR_OPCODE_FILES = \ | 
 |     AirOpcode.h \ | 
 |     AirOpcodeUtils.h \ | 
 |     AirOpcodeGenerated.h \ | 
 | # | 
 | AIR_OPCODE_FILES_PATTERNS = $(subst .,%,$(AIR_OPCODE_FILES)) | 
 |  | 
 | all : $(AIR_OPCODE_FILES) | 
 |  | 
 | $(AIR_OPCODE_FILES_PATTERNS) : $(JavaScriptCore)/b3/air/opcode_generator.rb $(JavaScriptCore)/b3/air/AirOpcode.opcodes | 
 | 	$(RUBY) $^ | 
 |  | 
 | UnicodePatternTables.h: $(JavaScriptCore)/yarr/generateYarrUnicodePropertyTables.py $(JavaScriptCore)/yarr/hasher.py $(JavaScriptCore)/ucd/DerivedBinaryProperties.txt $(JavaScriptCore)/ucd/DerivedCoreProperties.txt $(JavaScriptCore)/ucd/DerivedNormalizationProps.txt $(JavaScriptCore)/ucd/PropList.txt $(JavaScriptCore)/ucd/PropertyAliases.txt $(JavaScriptCore)/ucd/PropertyValueAliases.txt $(JavaScriptCore)/ucd/ScriptExtensions.txt $(JavaScriptCore)/ucd/Scripts.txt $(JavaScriptCore)/ucd/UnicodeData.txt $(JavaScriptCore)/ucd/emoji-data.txt | 
 | 	$(PYTHON) $(JavaScriptCore)/yarr/generateYarrUnicodePropertyTables.py $(JavaScriptCore)/ucd ./UnicodePatternTables.h | 
 |  | 
 | yarr/YarrCanonicalizeUnicode.cpp: $(JavaScriptCore)/yarr/generateYarrCanonicalizeUnicode $(JavaScriptCore)/ucd/CaseFolding.txt | 
 | 	$(PYTHON) $(JavaScriptCore)/yarr/generateYarrCanonicalizeUnicode $(JavaScriptCore)/ucd/CaseFolding.txt ./yarr/YarrCanonicalizeUnicode.cpp | 
 |  | 
 | WasmOps.h: $(JavaScriptCore)/wasm/generateWasmOpsHeader.py $(JavaScriptCore)/wasm/generateWasm.py $(JavaScriptCore)/wasm/wasm.json | 
 | 	$(PYTHON) $(JavaScriptCore)/wasm/generateWasmOpsHeader.py $(JavaScriptCore)/wasm/wasm.json ./WasmOps.h | 
 |  | 
 | WasmB3IRGeneratorInlines.h: $(JavaScriptCore)/wasm/generateWasmB3IRGeneratorInlinesHeader.py $(JavaScriptCore)/wasm/generateWasm.py $(JavaScriptCore)/wasm/wasm.json | 
 | 	$(PYTHON) $(JavaScriptCore)/wasm/generateWasmB3IRGeneratorInlinesHeader.py $(JavaScriptCore)/wasm/wasm.json ./WasmB3IRGeneratorInlines.h | 
 |  | 
 | # Dynamically-defined targets are listed below. Static targets belong up top. | 
 |  | 
 | all : \ | 
 |     $(OBJECT_LUT_HEADERS) \ | 
 | # |