Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit 36667b8

Browse files
Update existing .xcfilelists
https://bugs.webkit.org/show_bug.cgi?id=193791 <rdar://problem/47201706> Reviewed by Alex Christensen. Many .xcfilelist files were added in r238824 in order to support XCBuild. Update these with recent changes to the set of build files and with the current generate-xcfilelist script. Source/JavaScriptCore: * DerivedSources-input.xcfilelist: * DerivedSources-output.xcfilelist: * UnifiedSources-input.xcfilelist: * UnifiedSources-output.xcfilelist: Source/WebCore: No new tests since there should be no observable behavior difference. * DerivedSources-input.xcfilelist: * DerivedSources-output.xcfilelist: * UnifiedSources-input.xcfilelist: * UnifiedSources-output.xcfilelist: Source/WebKit: * DerivedSources-input.xcfilelist: * DerivedSources-output.xcfilelist: * UnifiedSources-input.xcfilelist: * UnifiedSources-output.xcfilelist: Tools: * DumpRenderTree/DerivedSources-input.xcfilelist: * DumpRenderTree/DerivedSources-output.xcfilelist: * WebKitTestRunner/DerivedSources-input.xcfilelist: * WebKitTestRunner/DerivedSources-output.xcfilelist: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@240507 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent ec64013 commit 36667b8

20 files changed

+329
-44
lines changed

Source/JavaScriptCore/ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
2019-01-25 Keith Rollin <[email protected]>
2+
3+
Update existing .xcfilelists
4+
https://bugs.webkit.org/show_bug.cgi?id=193791
5+
<rdar://problem/47201706>
6+
7+
Reviewed by Alex Christensen.
8+
9+
Many .xcfilelist files were added in r238824 in order to support
10+
XCBuild. Update these with recent changes to the set of build files
11+
and with the current generate-xcfilelist script.
12+
13+
* DerivedSources-input.xcfilelist:
14+
* DerivedSources-output.xcfilelist:
15+
* UnifiedSources-input.xcfilelist:
16+
* UnifiedSources-output.xcfilelist:
17+
118
2019-01-25 Jon Davis <[email protected]>
219

320
Update JavaScriptCore feature status entries.

Source/JavaScriptCore/DerivedSources-input.xcfilelist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# This file is generated by the generate-xcfilelists script.
12
$(PROJECT_DIR)/DerivedSources.make
23
$(PROJECT_DIR)/KeywordLookupGenerator.py
34
$(PROJECT_DIR)/Scripts/UpdateContents.py

Source/JavaScriptCore/DerivedSources-output.xcfilelist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# This file is generated by the generate-xcfilelists script.
12
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/AirOpcode.h
23
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/AirOpcodeGenerated.h
34
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/AirOpcodeUtils.h

Source/JavaScriptCore/UnifiedSources-input.xcfilelist

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
# This file is generated by the generate-xcfilelists script.
12
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/JSCBuiltins.cpp
23
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/inspector/InspectorBackendDispatchers.cpp
34
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/inspector/InspectorFrontendDispatchers.cpp
45
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/inspector/InspectorProtocolObjects.cpp
56
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/yarr/YarrCanonicalizeUnicode.cpp
7+
$(SRCROOT)/API/JSAPIGlobalObject.cpp
8+
$(SRCROOT)/API/JSAPIGlobalObject.mm
69
$(SRCROOT)/API/JSAPIValueWrapper.cpp
710
$(SRCROOT)/API/JSAPIWrapperObject.mm
811
$(SRCROOT)/API/JSBase.cpp
@@ -18,6 +21,7 @@ $(SRCROOT)/API/JSManagedValue.mm
1821
$(SRCROOT)/API/JSMarkingConstraintPrivate.cpp
1922
$(SRCROOT)/API/JSObjectRef.cpp
2023
$(SRCROOT)/API/JSRemoteInspector.cpp
24+
$(SRCROOT)/API/JSScript.mm
2125
$(SRCROOT)/API/JSScriptRef.cpp
2226
$(SRCROOT)/API/JSStringRef.cpp
2327
$(SRCROOT)/API/JSStringRefCF.cpp
@@ -303,6 +307,7 @@ $(SRCROOT)/dfg/DFGConstantFoldingPhase.cpp
303307
$(SRCROOT)/dfg/DFGConstantHoistingPhase.cpp
304308
$(SRCROOT)/dfg/DFGCriticalEdgeBreakingPhase.cpp
305309
$(SRCROOT)/dfg/DFGDCEPhase.cpp
310+
$(SRCROOT)/dfg/DFGDesiredGlobalProperties.cpp
306311
$(SRCROOT)/dfg/DFGDesiredIdentifiers.cpp
307312
$(SRCROOT)/dfg/DFGDesiredTransitions.cpp
308313
$(SRCROOT)/dfg/DFGDesiredWatchpoints.cpp

Source/JavaScriptCore/UnifiedSources-output.xcfilelist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# This file is generated by the generate-xcfilelists script.
12
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/unified-sources/UnifiedSource1-mm.mm
23
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/unified-sources/UnifiedSource1.cpp
34
$(BUILT_PRODUCTS_DIR)/DerivedSources/JavaScriptCore/unified-sources/UnifiedSource10.cpp

Source/WebCore/ChangeLog

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2019-01-25 Keith Rollin <[email protected]>
2+
3+
Update existing .xcfilelists
4+
https://bugs.webkit.org/show_bug.cgi?id=193791
5+
<rdar://problem/47201706>
6+
7+
Reviewed by Alex Christensen.
8+
9+
Many .xcfilelist files were added in r238824 in order to support
10+
XCBuild. Update these with recent changes to the set of build files
11+
and with the current generate-xcfilelist script.
12+
13+
No new tests since there should be no observable behavior difference.
14+
15+
* DerivedSources-input.xcfilelist:
16+
* DerivedSources-output.xcfilelist:
17+
* UnifiedSources-input.xcfilelist:
18+
* UnifiedSources-output.xcfilelist:
19+
120
2019-01-25 Brent Fulgham <[email protected]>
221

322
Activate the WebResourceLoadStatisticsStore in the NetworkProcess and deactivate it in the UIProcess.

Source/WebCore/DerivedSources-input.xcfilelist

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1+
# This file is generated by the generate-xcfilelists script.
2+
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/ApplePaySetup.idl
3+
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/ApplePaySetupFeature.idl
4+
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/DocumentTouch.idl
15
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/GestureEvent.idl
6+
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/Touch.idl
7+
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/TouchEvent.idl
8+
$(BUILT_PRODUCTS_DIR)/usr/local/include/WebKitAdditions/TouchList.idl
29
$(JAVASCRIPTCORE_PRIVATE_HEADERS_DIR)/UpdateContents.py
310
$(JAVASCRIPTCORE_PRIVATE_HEADERS_DIR)/builtins_generate_combined_header.py
411
$(JAVASCRIPTCORE_PRIVATE_HEADERS_DIR)/builtins_generate_combined_implementation.py
@@ -317,21 +324,44 @@ $(PROJECT_DIR)/Modules/webgpu/DOMWindowWebGPU.idl
317324
$(PROJECT_DIR)/Modules/webgpu/WebGPU.idl
318325
$(PROJECT_DIR)/Modules/webgpu/WebGPUAdapter.idl
319326
$(PROJECT_DIR)/Modules/webgpu/WebGPUAdapterDescriptor.idl
327+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBindGroup.idl
328+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBindGroupBinding.idl
329+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBindGroupDescriptor.idl
330+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBindGroupLayout.idl
331+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBindGroupLayoutBinding.idl
332+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBindGroupLayoutDescriptor.idl
333+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBuffer.idl
334+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBufferBinding.idl
335+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBufferDescriptor.idl
336+
$(PROJECT_DIR)/Modules/webgpu/WebGPUBufferUsage.idl
337+
$(PROJECT_DIR)/Modules/webgpu/WebGPUColor.idl
320338
$(PROJECT_DIR)/Modules/webgpu/WebGPUCommandBuffer.idl
321339
$(PROJECT_DIR)/Modules/webgpu/WebGPUDevice.idl
340+
$(PROJECT_DIR)/Modules/webgpu/WebGPUIndexFormat.idl
341+
$(PROJECT_DIR)/Modules/webgpu/WebGPUInputStateDescriptor.idl
342+
$(PROJECT_DIR)/Modules/webgpu/WebGPUInputStepMode.idl
322343
$(PROJECT_DIR)/Modules/webgpu/WebGPUPipelineDescriptorBase.idl
344+
$(PROJECT_DIR)/Modules/webgpu/WebGPUPipelineLayout.idl
345+
$(PROJECT_DIR)/Modules/webgpu/WebGPUPipelineLayoutDescriptor.idl
323346
$(PROJECT_DIR)/Modules/webgpu/WebGPUPipelineStageDescriptor.idl
347+
$(PROJECT_DIR)/Modules/webgpu/WebGPUProgrammablePassEncoder.idl
324348
$(PROJECT_DIR)/Modules/webgpu/WebGPUQueue.idl
349+
$(PROJECT_DIR)/Modules/webgpu/WebGPURenderPassColorAttachmentDescriptor.idl
350+
$(PROJECT_DIR)/Modules/webgpu/WebGPURenderPassDescriptor.idl
351+
$(PROJECT_DIR)/Modules/webgpu/WebGPURenderPassEncoder.idl
325352
$(PROJECT_DIR)/Modules/webgpu/WebGPURenderPipeline.idl
326353
$(PROJECT_DIR)/Modules/webgpu/WebGPURenderPipelineDescriptor.idl
327354
$(PROJECT_DIR)/Modules/webgpu/WebGPURenderingContext.idl
328355
$(PROJECT_DIR)/Modules/webgpu/WebGPUShaderModule.idl
329356
$(PROJECT_DIR)/Modules/webgpu/WebGPUShaderModuleDescriptor.idl
330-
$(PROJECT_DIR)/Modules/webgpu/WebGPUShaderStage.idl
357+
$(PROJECT_DIR)/Modules/webgpu/WebGPUShaderStageBit.idl
331358
$(PROJECT_DIR)/Modules/webgpu/WebGPUSwapChain.idl
332359
$(PROJECT_DIR)/Modules/webgpu/WebGPUTexture.idl
333360
$(PROJECT_DIR)/Modules/webgpu/WebGPUTextureFormatEnum.idl
334361
$(PROJECT_DIR)/Modules/webgpu/WebGPUTextureView.idl
362+
$(PROJECT_DIR)/Modules/webgpu/WebGPUVertexAttributeDescriptor.idl
363+
$(PROJECT_DIR)/Modules/webgpu/WebGPUVertexFormat.idl
364+
$(PROJECT_DIR)/Modules/webgpu/WebGPUVertexInputDescriptor.idl
335365
$(PROJECT_DIR)/Modules/websockets/CloseEvent.idl
336366
$(PROJECT_DIR)/Modules/websockets/WebSocket.idl
337367
$(PROJECT_DIR)/Modules/webvr/DOMWindowWebVR.idl
@@ -476,11 +506,13 @@ $(PROJECT_DIR)/css/mediaControls.css
476506
$(PROJECT_DIR)/css/plugIns.css
477507
$(PROJECT_DIR)/css/quirks.css
478508
$(PROJECT_DIR)/css/svg.css
479-
$(PROJECT_DIR)/css/typedom/CSSNumericValue.idl
480-
$(PROJECT_DIR)/css/typedom/CSSStyleValue.idl
481-
$(PROJECT_DIR)/css/typedom/CSSUnitValue.idl
482-
$(PROJECT_DIR)/css/typedom/CSSUnparsedValue.idl
509+
$(PROJECT_DIR)/css/typedom/StylePropertyMap.idl
483510
$(PROJECT_DIR)/css/typedom/StylePropertyMapReadOnly.idl
511+
$(PROJECT_DIR)/css/typedom/TypedOMCSSImageValue.idl
512+
$(PROJECT_DIR)/css/typedom/TypedOMCSSNumericValue.idl
513+
$(PROJECT_DIR)/css/typedom/TypedOMCSSStyleValue.idl
514+
$(PROJECT_DIR)/css/typedom/TypedOMCSSUnitValue.idl
515+
$(PROJECT_DIR)/css/typedom/TypedOMCSSUnparsedValue.idl
484516
$(PROJECT_DIR)/dom/AbortController.idl
485517
$(PROJECT_DIR)/dom/AbortSignal.idl
486518
$(PROJECT_DIR)/dom/AnimationEvent.idl

0 commit comments

Comments
 (0)