c2455500f4
After [1], a manual dependency on exe_and_shlib_deps is no longer necessary
since it's automatically added. This CL removes all remaining manual references
to exe_and_shlib_deps.
[1] d7ed1f0a9c
BUG=chromium:845700
R=machenbach
Change-Id: I17da573b7b6509a690caf8be6ae6afc180105f07
Reviewed-on: https://chromium-review.googlesource.com/1082913
Commit-Queue: Thomas Anderson <thomasanderson@chromium.org>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#53500}
37 lines
672 B
Plaintext
37 lines
672 B
Plaintext
# Copyright 2017 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")
|
|
|
|
v8_executable("mkgrokdump") {
|
|
testonly = true
|
|
|
|
# mkgrokdump is used to create tools/v8heapconst.py.
|
|
|
|
sources = [
|
|
"mkgrokdump.cc",
|
|
]
|
|
|
|
configs = [ "../..:internal_config_base" ]
|
|
|
|
defines = []
|
|
|
|
deps = [
|
|
"../..:v8",
|
|
"../..:v8_libbase",
|
|
"../..:v8_libplatform",
|
|
"//build/win:default_exe_manifest",
|
|
]
|
|
|
|
data_deps = [
|
|
"../../tools:v8_testrunner",
|
|
]
|
|
|
|
data = [
|
|
"mkgrokdump.status",
|
|
"testcfg.py",
|
|
"../../tools/v8heapconst.py",
|
|
]
|
|
}
|