6bb5688fe0
This is a reland of e13a744a45
Fixed jsoncpp BUILD.gn errors by removing missing files.
Original change's description:
> [build] Fix gn check failures in v8/third_party
>
> This removes the blanket exclusion for third_party but leaves
> third_party/icu excluded (which is the same as chrome).
>
> Most fixed issues are to do with previously removed header files and
> missing dependencies.
>
> Bug: v8:7330
> Change-Id: I7e634e35c0620a1f3db9aba01119921e4f781e3e
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2856838
> Auto-Submit: Dan Elphick <delphick@chromium.org>
> Reviewed-by: Michael Achenbach <machenbach@chromium.org>
> Commit-Queue: Michael Achenbach <machenbach@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#74295}
Bug: v8:7330
Cq-Include-Trybots: luci.v8.try:v8_linux64_perfetto_dbg_ng
Change-Id: I4c2c63cc3cb6fb3fabe33717b20ac4a1efeec09b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2862772
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Dan Elphick <delphick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74308}
93 lines
2.2 KiB
Plaintext
93 lines
2.2 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/dispatch.cc",
|
|
"crdtp/dispatch.h",
|
|
"crdtp/error_support.cc",
|
|
"crdtp/error_support.h",
|
|
"crdtp/export.h",
|
|
"crdtp/find_by_first.h",
|
|
"crdtp/json.cc",
|
|
"crdtp/json.h",
|
|
"crdtp/maybe.h",
|
|
"crdtp/parser_handler.h",
|
|
"crdtp/protocol_core.cc",
|
|
"crdtp/protocol_core.h",
|
|
"crdtp/serializable.cc",
|
|
"crdtp/serializable.h",
|
|
"crdtp/serializer_traits.h",
|
|
"crdtp/span.cc",
|
|
"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" ]
|
|
deps = [ "../../:v8_internal_headers" ]
|
|
configs = [ ":crdtp_config" ]
|
|
}
|
|
|
|
# These tests are linked into test/unittests.
|
|
v8_source_set("crdtp_test") {
|
|
sources = [
|
|
"crdtp/cbor_test.cc",
|
|
"crdtp/dispatch_test.cc",
|
|
"crdtp/error_support_test.cc",
|
|
"crdtp/find_by_first_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",
|
|
"crdtp/status_test_support.cc",
|
|
"crdtp/status_test_support.h",
|
|
]
|
|
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
|
|
}
|