2018-07-18 04:45:13 +03:00
|
|
|
config("native_mate_config") {
|
|
|
|
include_dirs = [ "." ]
|
|
|
|
}
|
|
|
|
|
|
|
|
source_set("native_mate") {
|
|
|
|
deps = [
|
|
|
|
"//base",
|
|
|
|
"//net",
|
2018-10-04 02:03:26 +03:00
|
|
|
"//third_party/electron_node:node_lib",
|
2018-07-18 04:45:13 +03:00
|
|
|
"//v8:v8_headers",
|
|
|
|
]
|
|
|
|
public_configs = [ ":native_mate_config" ]
|
2019-10-15 04:15:23 +03:00
|
|
|
include_dirs = [ ".." ]
|
2018-07-18 04:45:13 +03:00
|
|
|
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",
|
2019-09-19 18:09:15 +03:00
|
|
|
"native_mate/object_template_builder_deprecated.h",
|
2018-07-18 04:45:13 +03:00
|
|
|
"native_mate/wrappable.cc",
|
|
|
|
"native_mate/wrappable.h",
|
|
|
|
"native_mate/wrappable_base.h",
|
|
|
|
]
|
|
|
|
}
|