2f205f5a33
New revision: 726836d7317a4031f48af9960bab51d7a2ab2867 The gist is that serialization is direct from protocol objects to CBOR, no more detour via protocol::Value. Upstream PRs: https://chromium-review.googlesource.com/c/deps/inspector_protocol/+/1956388 https://chromium-review.googlesource.com/c/deps/inspector_protocol/+/1966418 Also: https://chromium-review.googlesource.com/c/deps/inspector_protocol/+/1941035 Change-Id: I89f742a4fd47b5eb8ebd98ce6e10ecba0501cf66 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1958956 Reviewed-by: Yang Guo <yangguo@chromium.org> Commit-Queue: Johannes Henkel <johannes@chromium.org> Cr-Commit-Position: refs/heads/master@{#65448}
82 lines
1.8 KiB
Plaintext
82 lines
1.8 KiB
Plaintext
# Copyright 2019 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("../../gni/v8.gni")
|
|
|
|
config("crdtp_config") {
|
|
visibility = [ "../../src/inspector:*" ]
|
|
configs = [ "../../:internal_config" ]
|
|
include_dirs = [ "../../include" ]
|
|
}
|
|
|
|
v8_source_set("crdtp") {
|
|
sources = [
|
|
"crdtp/cbor.cc",
|
|
"crdtp/cbor.h",
|
|
"crdtp/export.h",
|
|
"crdtp/glue.h",
|
|
"crdtp/json.cc",
|
|
"crdtp/json.h",
|
|
"crdtp/parser_handler.h",
|
|
"crdtp/serializable.cc",
|
|
"crdtp/serializable.h",
|
|
"crdtp/serializer_traits.h",
|
|
"crdtp/span.h",
|
|
"crdtp/status.cc",
|
|
"crdtp/status.h",
|
|
]
|
|
configs = [ ":crdtp_config" ]
|
|
deps = [
|
|
":crdtp_platform",
|
|
]
|
|
}
|
|
|
|
# A small adapter library which only :crdtp may depend on.
|
|
v8_source_set("crdtp_platform") {
|
|
visibility = [ ":crdtp" ]
|
|
sources = [
|
|
"crdtp/json_platform.h",
|
|
"crdtp/json_platform_v8.cc",
|
|
]
|
|
public_deps = [
|
|
"../..:v8_libbase",
|
|
]
|
|
configs = [ ":crdtp_config" ]
|
|
}
|
|
|
|
# These tests are linked into test/unittests.
|
|
v8_source_set("crdtp_test") {
|
|
sources = [
|
|
"crdtp/cbor_test.cc",
|
|
"crdtp/glue_test.cc",
|
|
"crdtp/json_test.cc",
|
|
"crdtp/serializable_test.cc",
|
|
"crdtp/serializer_traits_test.cc",
|
|
"crdtp/span_test.cc",
|
|
"crdtp/status_test.cc",
|
|
]
|
|
configs = [ ":crdtp_config" ]
|
|
deps = [
|
|
":crdtp_test_platform",
|
|
]
|
|
testonly = true
|
|
}
|
|
|
|
# A small adapter library which only :crdtp_test may depend on.
|
|
v8_source_set("crdtp_test_platform") {
|
|
sources = [
|
|
"crdtp/test_platform.h",
|
|
"crdtp/test_platform_v8.cc",
|
|
]
|
|
configs = [ ":crdtp_config" ]
|
|
public_deps = [
|
|
":crdtp",
|
|
"../..:v8_libbase",
|
|
"../../src/inspector:inspector_string_conversions",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
]
|
|
testonly = true
|
|
}
|