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

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: 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..3a60185285943c0d34d919ba7c74c58ef50b031c 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,24 @@
'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',
+ ],
+ },
+ {
+ 'sources!' : [
Ivan Posva 2013/06/03 07:32:09 To me this reads as if the below sources are alway
Bill Hesse 2013/06/03 09:20:41 Done.
+ '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