2016-09-30 15:52:31 +00:00
|
|
|
# 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")
|
|
|
|
|
2017-03-31 08:24:34 +00:00
|
|
|
v8_executable("inspector-test") {
|
|
|
|
testonly = true
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2017-03-31 08:24:34 +00:00
|
|
|
sources = [
|
|
|
|
"inspector-impl.cc",
|
|
|
|
"inspector-impl.h",
|
|
|
|
"inspector-test.cc",
|
|
|
|
"task-runner.cc",
|
|
|
|
"task-runner.h",
|
|
|
|
]
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2017-03-31 08:24:34 +00:00
|
|
|
configs = [
|
|
|
|
"../..:external_config",
|
|
|
|
"../..:internal_config_base",
|
|
|
|
]
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2017-03-31 08:24:34 +00:00
|
|
|
deps = [
|
|
|
|
"../..:v8",
|
|
|
|
"../..:v8_libbase",
|
|
|
|
"../..:v8_libplatform",
|
|
|
|
"//build/config/sanitizers:deps",
|
|
|
|
"//build/win:default_exe_manifest",
|
|
|
|
]
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2017-03-31 08:24:34 +00:00
|
|
|
cflags = []
|
|
|
|
ldflags = []
|
2016-09-30 15:52:31 +00:00
|
|
|
}
|