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

Unified Diff: runtime/bin/bin.gypi

Issue 8277033: Add exists, create and delete to directory implementation on Linux and Mac. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Windows build. Created 9 years, 2 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_in.cc » ('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 f04297ff3b5000c187cdea9c1d687af9b568e040..1d96176d0dec5697f38c0b1b23dc4ee28252d53f 100644
--- a/runtime/bin/bin.gypi
+++ b/runtime/bin/bin.gypi
@@ -74,8 +74,7 @@
'dartutils.cc',
'directory.h',
'directory.cc',
- 'directory_linux.cc',
- 'directory_macos.cc',
+ 'directory_posix.cc',
'directory_win.cc',
'eventhandler.cc',
'eventhandler.h',
@@ -311,8 +310,7 @@
'dartutils.cc',
'directory.h',
'directory.cc',
- 'directory_linux.cc',
- 'directory_macos.cc',
+ 'directory_posix.cc',
'directory_win.cc',
'eventhandler.cc',
'eventhandler.h',
@@ -373,7 +371,7 @@
],
'conditions': [
['OS=="linux"', {'sources/' : [
- ['include', 'directory_linux.cc'],
+ ['include', 'directory_posix.cc'],
['include', 'eventhandler_linux.cc'],
['include', 'eventhandler_linux.h'],
['include', 'fdutils.h'],
@@ -383,7 +381,7 @@
['include', 'socket_linux.cc'],
]}],
['OS=="mac"', {'sources/' : [
- ['include', 'directory_macos.cc'],
+ ['include', 'directory_posix.cc'],
['include', 'eventhandler_macos.cc'],
['include', 'eventhandler_macos.h'],
['include', 'fdutils.h'],
« no previous file with comments | « no previous file | runtime/bin/builtin_in.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698