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

Unified Diff: runtime/bin/bin.gypi

Issue 9430051: Add native extensions to the Dart shell, on the linux platform. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Windows bugs Created 8 years, 10 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 | runtime/bin/builtin_impl_sources.gypi » ('j') | 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 858d2970516009b4abaaabbc7cd569fac44c0af7..62eb6a5d406779e7ff3a4bc9e51fcaad6bf22071 100644
--- a/runtime/bin/bin.gypi
+++ b/runtime/bin/bin.gypi
@@ -308,7 +308,7 @@
'target_name': 'dart',
'type': 'executable',
'dependencies': [
- 'libdart',
+ 'libdart_export',
'libdart_builtin',
'generate_snapshot_file',
],
@@ -401,4 +401,26 @@
],
},
],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'targets': [
+ {
+ 'target_name': 'test_extension',
+ 'type': 'shared_library',
+ 'dependencies': [
+ ],
+ 'include_dirs': [
+ '.',
+ ],
+ 'sources': [
+ 'test_extension_linux.cc',
+ ],
+ 'defines': [
+ 'DART_SHARED_LIB',
+ ],
+ },
+ ],
+ }],
+ ],
}
+
« no previous file with comments | « no previous file | runtime/bin/builtin_impl_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698