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

Side by Side 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: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/builtin_in.cc » ('j') | runtime/bin/directory.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'builtin_in_cc_file': 'builtin_in.cc', 7 'builtin_in_cc_file': 'builtin_in.cc',
8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc',
9 'snapshot_in_cc_file': 'snapshot_in.cc', 9 'snapshot_in_cc_file': 'snapshot_in.cc',
10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'include_dirs': [ 67 'include_dirs': [
68 '..', 68 '..',
69 ], 69 ],
70 'sources': [ 70 'sources': [
71 'builtin.cc', 71 'builtin.cc',
72 'builtin.h', 72 'builtin.h',
73 'dartutils.h', 73 'dartutils.h',
74 'dartutils.cc', 74 'dartutils.cc',
75 'directory.h', 75 'directory.h',
76 'directory.cc', 76 'directory.cc',
77 'directory_linux.cc', 77 'directory_posix.cc',
78 'directory_macos.cc',
79 'directory_win.cc', 78 'directory_win.cc',
80 'eventhandler.cc', 79 'eventhandler.cc',
81 'eventhandler.h', 80 'eventhandler.h',
82 'eventhandler_linux.cc', 81 'eventhandler_linux.cc',
83 'eventhandler_linux.h', 82 'eventhandler_linux.h',
84 'eventhandler_macos.cc', 83 'eventhandler_macos.cc',
85 'eventhandler_macos.h', 84 'eventhandler_macos.h',
86 'eventhandler_win.cc', 85 'eventhandler_win.cc',
87 'eventhandler_win.h', 86 'eventhandler_win.h',
88 'file.cc', 87 'file.cc',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'include_dirs': [ 303 'include_dirs': [
305 '..', 304 '..',
306 '<(SHARED_INTERMEDIATE_DIR)', 305 '<(SHARED_INTERMEDIATE_DIR)',
307 ], 306 ],
308 'sources': [ 307 'sources': [
309 'run_vm_tests.cc', 308 'run_vm_tests.cc',
310 'dartutils.h', 309 'dartutils.h',
311 'dartutils.cc', 310 'dartutils.cc',
312 'directory.h', 311 'directory.h',
313 'directory.cc', 312 'directory.cc',
314 'directory_linux.cc', 313 'directory_posix.cc',
315 'directory_macos.cc',
316 'directory_win.cc', 314 'directory_win.cc',
317 'eventhandler.cc', 315 'eventhandler.cc',
318 'eventhandler.h', 316 'eventhandler.h',
319 'eventhandler_linux.cc', 317 'eventhandler_linux.cc',
320 'eventhandler_linux.h', 318 'eventhandler_linux.h',
321 'eventhandler_macos.cc', 319 'eventhandler_macos.cc',
322 'eventhandler_macos.h', 320 'eventhandler_macos.h',
323 'eventhandler_win.cc', 321 'eventhandler_win.cc',
324 'eventhandler_win.h', 322 'eventhandler_win.h',
325 'file.cc', 323 'file.cc',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ['include', 'file.h'], 364 ['include', 'file.h'],
367 ['include', 'file_test.cc'], 365 ['include', 'file_test.cc'],
368 ['include', 'process.cc'], 366 ['include', 'process.cc'],
369 ['include', 'process.h'], 367 ['include', 'process.h'],
370 ['include', 'socket.cc'], 368 ['include', 'socket.cc'],
371 ['include', 'socket.h'], 369 ['include', 'socket.h'],
372 ['include', 'set_test.cc'], 370 ['include', 'set_test.cc'],
373 ], 371 ],
374 'conditions': [ 372 'conditions': [
375 ['OS=="linux"', {'sources/' : [ 373 ['OS=="linux"', {'sources/' : [
376 ['include', 'directory_linux.cc'], 374 ['include', 'directory_posix.cc'],
377 ['include', 'eventhandler_linux.cc'], 375 ['include', 'eventhandler_linux.cc'],
378 ['include', 'eventhandler_linux.h'], 376 ['include', 'eventhandler_linux.h'],
379 ['include', 'fdutils.h'], 377 ['include', 'fdutils.h'],
380 ['include', 'fdutils_linux.cc'], 378 ['include', 'fdutils_linux.cc'],
381 ['include', 'file_linux.cc'], 379 ['include', 'file_linux.cc'],
382 ['include', 'process_linux.cc'], 380 ['include', 'process_linux.cc'],
383 ['include', 'socket_linux.cc'], 381 ['include', 'socket_linux.cc'],
384 ]}], 382 ]}],
385 ['OS=="mac"', {'sources/' : [ 383 ['OS=="mac"', {'sources/' : [
386 ['include', 'directory_macos.cc'], 384 ['include', 'directory_posix.cc'],
387 ['include', 'eventhandler_macos.cc'], 385 ['include', 'eventhandler_macos.cc'],
388 ['include', 'eventhandler_macos.h'], 386 ['include', 'eventhandler_macos.h'],
389 ['include', 'fdutils.h'], 387 ['include', 'fdutils.h'],
390 ['include', 'fdutils_macos.cc'], 388 ['include', 'fdutils_macos.cc'],
391 ['include', 'file_macos.cc'], 389 ['include', 'file_macos.cc'],
392 ['include', 'process_macos.cc'], 390 ['include', 'process_macos.cc'],
393 ['include', 'socket_macos.cc'], 391 ['include', 'socket_macos.cc'],
394 ]}], 392 ]}],
395 ['OS=="win"', {'sources/' : [ 393 ['OS=="win"', {'sources/' : [
396 ['include', 'directory_win.cc'], 394 ['include', 'directory_win.cc'],
397 ['include', 'eventhandler_win.cc'], 395 ['include', 'eventhandler_win.cc'],
398 ['include', 'eventhandler_win.h'], 396 ['include', 'eventhandler_win.h'],
399 ['include', 'file_win.cc'], 397 ['include', 'file_win.cc'],
400 ['include', 'process_win.cc'], 398 ['include', 'process_win.cc'],
401 ['include', 'socket_win.cc'], 399 ['include', 'socket_win.cc'],
402 ]}], 400 ]}],
403 ['OS=="win"', { 401 ['OS=="win"', {
404 'link_settings': { 402 'link_settings': {
405 'libraries': [ '-lws2_32.lib' ], 403 'libraries': [ '-lws2_32.lib' ],
406 }, 404 },
407 }], 405 }],
408 ], 406 ],
409 }, 407 },
410 ], 408 ],
411 } 409 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin_in.cc » ('j') | runtime/bin/directory.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698