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

Unified Diff: runtime/bin/bin.gypi

Issue 1831533002: Fix broken dartium build due to invalid dependencies when dart_io_support=0 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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: runtime/bin/bin.gypi
diff --git a/runtime/bin/bin.gypi b/runtime/bin/bin.gypi
index 5bdd6061e6f6237ae37543732c7b8f927c614570..e30b746c8e0d006c3a788a15c4de6b3a72c932da 100644
--- a/runtime/bin/bin.gypi
+++ b/runtime/bin/bin.gypi
@@ -230,7 +230,7 @@
'../third_party/boringssl/boringssl_dart.gyp:boringssl',
],
}],
- ['dart_io_secure_socket==0', {
+ ['dart_io_secure_socket==0 or dart_io_support==0', {
'defines': [
'DART_IO_SECURE_SOCKET_DISABLED'
],
@@ -306,7 +306,7 @@
'../third_party/boringssl/boringssl_dart.gyp:boringssl',
],
}],
- ['dart_io_secure_socket==0', {
+ ['dart_io_secure_socket==0 or dart_io_support==0', {
'defines': [
'DART_IO_SECURE_SOCKET_DISABLED'
],
« 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