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

Unified Diff: BUILD.gn

Issue 2655243004: Supress generating dfe snapshot on Windows. (Closed)
Patch Set: Created 3 years, 11 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index bc5f84f07aef9d10ab8e47c4c5be630850efa00d..8f6dcf83cd8ed2a8e7b58c35bbbd4c67211b98f1 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -42,10 +42,13 @@ group("runtime") {
"runtime/bin:sample_extension",
"runtime/bin:test_extension",
"runtime/vm:patched_sdk",
-
- # TODO(rmacnak): Link this into 'dart'
- "utils/kernel-service:kernel-service",
]
+
+ # TODO(28532): Enable on Windows.
+ # TODO(rmacnak): Link this into 'dart'
+ if (target_os != "windows") {
+ deps += [ "utils/kernel-service:kernel-service" ]
+ }
}
group("runtime_precompiled") {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698