-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Differential Revision: D6385924 fbshipit-source-id: 1913d903077494cc0d86d5a8c8839620f1ecab0c
- Loading branch information
1 parent
850efa8
commit 70c3590
Showing
13 changed files
with
294 additions
and
23 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,18 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE := jsinspector | ||
|
||
LOCAL_SRC_FILES := \ | ||
InspectorInterfaces.cpp | ||
|
||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. | ||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) | ||
|
||
LOCAL_CFLAGS += -Wall -Werror -fexceptions | ||
CXX11_FLAGS := -std=c++11 | ||
LOCAL_CFLAGS += $(CXX11_FLAGS) | ||
LOCAL_EXPORT_CPPFLAGS := $(CXX11_FLAGS) | ||
|
||
include $(BUILD_SHARED_LIBRARY) |
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,26 @@ | ||
include_defs("//ReactCommon/DEFS") | ||
|
||
EXPORTED_HEADERS = [ | ||
"InspectorInterfaces.h", | ||
] | ||
|
||
rn_xplat_cxx_library( | ||
name = "jsinspector", | ||
srcs = glob( | ||
["*.cpp"], | ||
), | ||
headers = glob( | ||
["*.h"], | ||
excludes = EXPORTED_HEADERS, | ||
), | ||
header_namespace = "jsinspector", | ||
exported_headers = EXPORTED_HEADERS, | ||
compiler_flags = [ | ||
"-Wall", | ||
"-fexceptions", | ||
"-std=c++1y", | ||
], | ||
visibility = [ | ||
"PUBLIC", | ||
], | ||
) |
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