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}
53 lines
987 B
Plaintext
53 lines
987 B
Plaintext
# Copyright 2016 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("inspector-test") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"inspector-test.cc",
|
|
"isolate-data.cc",
|
|
"isolate-data.h",
|
|
"task-runner.cc",
|
|
"task-runner.h",
|
|
]
|
|
|
|
configs = [
|
|
"../..:external_config",
|
|
"../..:internal_config_base",
|
|
]
|
|
|
|
deps = [
|
|
"../..:v8",
|
|
"../..:v8_libbase",
|
|
"../..:v8_libplatform",
|
|
"//build/win:default_exe_manifest",
|
|
]
|
|
|
|
data_deps = [
|
|
"../../tools:v8_testrunner",
|
|
]
|
|
|
|
data = [
|
|
"console/",
|
|
"cpu-profiler/",
|
|
"debugger/",
|
|
"heap-profiler/",
|
|
"inspector.status",
|
|
"json-parse-expected.txt",
|
|
"json-parse.js",
|
|
"protocol-test.js",
|
|
"runtime/",
|
|
"sessions/",
|
|
"testcfg.py",
|
|
"type-profiler/",
|
|
"../../src/inspector/injected-script-source.js",
|
|
]
|
|
|
|
cflags = []
|
|
ldflags = []
|
|
}
|