d67f060672
This reverts commit f2e25f8a09
.
Reason for revert: Breaks GCC 8.4.0 compilation, see bug.
Original change's description:
> [base] Replace base::Optional with Abseil
>
> Change base::Optional to an alias of absl::optional. Eventually we
> should remove it entirely.
>
> Bug: v8:11006
> Change-Id: I687d44cc7e7cd0a49a84bcc207231eb6808eef2d
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2476318
> Commit-Queue: Leszek Swirski <leszeks@chromium.org>
> Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#76913}
Bug: v8:11006, v8:12252
Change-Id: I8048dee676a36551d15f25a31d1e171dae00d975
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3173672
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Auto-Submit: Michael Lippautz <mlippautz@chromium.org>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#76976}
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
# Copyright 2018 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")
|
|
|
|
group("v8_run_gcmole") {
|
|
testonly = true
|
|
|
|
data = [
|
|
"GCMOLE.gn",
|
|
"gcmole.py",
|
|
"gcmole-test.cc",
|
|
"gcmole-tools/",
|
|
"run-gcmole.py",
|
|
"suspects.whitelist",
|
|
"ignored_files",
|
|
"test-expectations.txt",
|
|
|
|
# The following contains all relevant source and build files.
|
|
"../debug_helper/debug-helper.h",
|
|
"../../BUILD.gn",
|
|
"../../base/",
|
|
"../../include/",
|
|
"../../src/",
|
|
"../../test/cctest/",
|
|
"../../test/common/",
|
|
"../../testing/gtest/include/gtest/gtest_prod.h",
|
|
"../../third_party/googletest/src/googletest/include/gtest/gtest_prod.h",
|
|
"../../third_party/icu/source/",
|
|
"../../third_party/wasm-api/wasm.h",
|
|
"../../third_party/wasm-api/wasm.hh",
|
|
"../../third_party/zlib/",
|
|
"../../third_party/inspector_protocol/",
|
|
"$target_gen_dir/../../",
|
|
"$target_gen_dir/../../torque-generated/",
|
|
]
|
|
|
|
deps = [ "../../:run_torque" ]
|
|
|
|
if (v8_gcmole) {
|
|
# This assumes gcmole tools have been fetched by a hook
|
|
# into v8/tools/gcmole/gcmole_tools.
|
|
data += [ "gcmole-tools/" ]
|
|
}
|
|
}
|