-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CORS check in inspectortools (#10287)
* CORS check in inspectortools * Do not build the websocket inspector thing on wasm? * Move wasm inspector files * Fix header * Remove nice c++20 features we can't use * oops * format
- Loading branch information
Showing
10 changed files
with
58 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
|
||
target_sources(shared-sources INTERFACE | ||
inspectorhandler.cpp | ||
inspectorhandler.h | ||
inspectorhotreloader.h | ||
inspectorhotreloader.cpp | ||
inspectoritempicker.h | ||
inspectoritempicker.cpp | ||
inspectorutils.h | ||
inspectorutils.cpp | ||
) | ||
|
||
if(${MZ_PLATFORM_NAME} STREQUAL "wasm") | ||
target_sources(shared-sources INTERFACE | ||
wasminspector.cpp | ||
wasminspector.h | ||
) | ||
else() | ||
target_sources(shared-sources INTERFACE | ||
inspectorwebsocketconnection.cpp | ||
inspectorwebsocketconnection.h | ||
inspectorwebsocketserver.h | ||
inspectorwebsocketserver.cpp | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters