3ae3233e65
* refactor: move mate::Event to gin * refactor: move mate::Locker to gin * refactor: convert contextBridge to gin * refactor: convert contentTracing to gin * refactor: remove callback converter of native_mate * refactor: remove file_dialog_converter and native_window_converter from native_mate * refactor: convert webFrame to gin * refactor: move blink_converter to gin * refactor: remove net_converter from native_mate * refactor: remove event_emitter_caller_deprecated * refactor: remove gurl_converter from native_mate * refactor: remove file_path and string16_converter from native_mate * refactor: remove image_converter from native_mate * refactor: move value_converter to gin
32 lines
847 B
Text
32 lines
847 B
Text
config("native_mate_config") {
|
|
include_dirs = [ "." ]
|
|
}
|
|
|
|
source_set("native_mate") {
|
|
deps = [
|
|
"//base",
|
|
"//net",
|
|
"//third_party/electron_node:node_lib",
|
|
"//v8:v8_headers",
|
|
]
|
|
public_configs = [ ":native_mate_config" ]
|
|
include_dirs = [ ".." ]
|
|
sources = [
|
|
"native_mate/arguments.cc",
|
|
"native_mate/arguments.h",
|
|
"native_mate/compat.h",
|
|
"native_mate/constructor.h",
|
|
"native_mate/converter.cc",
|
|
"native_mate/converter.h",
|
|
"native_mate/dictionary.cc",
|
|
"native_mate/dictionary.h",
|
|
"native_mate/function_template.cc",
|
|
"native_mate/function_template.h",
|
|
"native_mate/handle.h",
|
|
"native_mate/object_template_builder.cc",
|
|
"native_mate/object_template_builder_deprecated.h",
|
|
"native_mate/wrappable.cc",
|
|
"native_mate/wrappable.h",
|
|
"native_mate/wrappable_base.h",
|
|
]
|
|
}
|