Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Unified Diff: test/BUILD.gn

Issue 2520683002: Properly define v8_enable_inspector and its override in GN. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gni/v8.gni ('k') | test/inspector/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/BUILD.gn
diff --git a/test/BUILD.gn b/test/BUILD.gn
index 9973134bf237ba6dbe212776abe3b06bc4761c32..af6ae95745f14cc3a663951693b2776aba7ee7b3 100644
--- a/test/BUILD.gn
+++ b/test/BUILD.gn
@@ -3,7 +3,7 @@
# found in the LICENSE file.
import("../gni/isolate.gni")
-import("//build_overrides/v8.gni")
+import("../gni/v8.gni")
group("gn_all") {
testonly = true
@@ -21,7 +21,7 @@ group("gn_all") {
]
}
- if (v8_enable_inspector_override) {
+ if (v8_enable_inspector) {
deps += [ "inspector:inspector-test" ]
}
@@ -138,7 +138,7 @@ v8_isolate_run("fuzzer") {
v8_isolate_run("inspector-test") {
deps = []
- if (v8_enable_inspector_override) {
+ if (v8_enable_inspector) {
deps += [ "inspector:inspector-test" ]
}
« no previous file with comments | « gni/v8.gni ('k') | test/inspector/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698