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

Unified Diff: runtime/bin/io_impl_sources.gypi

Issue 16254005: Clean up the gyp build of standalone dart executable on Android. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 7 years, 7 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 | « runtime/bin/filter_unsupported.cc ('k') | runtime/bin/io_impl_sources_no_nss.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/io_impl_sources.gypi
diff --git a/runtime/bin/io_impl_sources.gypi b/runtime/bin/io_impl_sources.gypi
index 0eeaf5dcc50f7974e2ea1be5ba0bc23997b12f34..9565456640a75bb2e07e66076f7e7b98428a1693 100644
--- a/runtime/bin/io_impl_sources.gypi
+++ b/runtime/bin/io_impl_sources.gypi
@@ -23,6 +23,7 @@
'eventhandler_win.h',
'filter.cc',
'filter.h',
+ 'filter_unsupported.cc',
'net/nss_memio.cc',
'net/nss_memio.h',
'platform.cc',
@@ -45,5 +46,23 @@
'socket_win.cc',
'secure_socket.cc',
'secure_socket.h',
+ 'secure_socket_unsupported.cc',
+ ],
+ 'conditions': [
+ ['dart_io_support==1', {
+ 'sources!' : [
+ 'filter_unsupported.cc',
+ 'secure_socket_unsupported.cc',
+ ],
+ },{ # else dart_io_support == 0
+ 'sources!' : [
+ 'filter.cc',
+ 'filter.h',
+ 'net/nss_memio.cc',
+ 'net/nss_memio.h',
+ 'secure_socket.cc',
+ 'secure_socket.h',
+ ],
+ }],
],
}
« no previous file with comments | « runtime/bin/filter_unsupported.cc ('k') | runtime/bin/io_impl_sources_no_nss.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698