| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_MACOS) | 6 #if defined(TARGET_OS_MACOS) |
| 7 | 7 |
| 8 #include "bin/file.h" | 8 #include "bin/file.h" |
| 9 | 9 |
| 10 #include <copyfile.h> // NOLINT |
| 10 #include <errno.h> // NOLINT | 11 #include <errno.h> // NOLINT |
| 11 #include <fcntl.h> // NOLINT | 12 #include <fcntl.h> // NOLINT |
| 12 #include <copyfile.h> // NOLINT | 13 #include <libgen.h> // NOLINT |
| 14 #include <limits.h> // NOLINT |
| 13 #include <sys/stat.h> // NOLINT | 15 #include <sys/stat.h> // NOLINT |
| 14 #include <unistd.h> // NOLINT | 16 #include <unistd.h> // NOLINT |
| 15 #include <libgen.h> // NOLINT | |
| 16 #include <limits.h> // NOLINT | |
| 17 | 17 |
| 18 #include "bin/builtin.h" | 18 #include "bin/builtin.h" |
| 19 #include "bin/fdutils.h" | 19 #include "bin/fdutils.h" |
| 20 #include "bin/log.h" | 20 #include "bin/log.h" |
| 21 | 21 |
| 22 #include "platform/signal_blocker.h" | 22 #include "platform/signal_blocker.h" |
| 23 #include "platform/utils.h" | 23 #include "platform/utils.h" |
| 24 | 24 |
| 25 namespace dart { | 25 namespace dart { |
| 26 namespace bin { | 26 namespace bin { |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 return ((file_1_info.st_ino == file_2_info.st_ino) && | 462 return ((file_1_info.st_ino == file_2_info.st_ino) && |
| 463 (file_1_info.st_dev == file_2_info.st_dev)) ? | 463 (file_1_info.st_dev == file_2_info.st_dev)) ? |
| 464 File::kIdentical : | 464 File::kIdentical : |
| 465 File::kDifferent; | 465 File::kDifferent; |
| 466 } | 466 } |
| 467 | 467 |
| 468 } // namespace bin | 468 } // namespace bin |
| 469 } // namespace dart | 469 } // namespace dart |
| 470 | 470 |
| 471 #endif // defined(TARGET_OS_MACOS) | 471 #endif // defined(TARGET_OS_MACOS) |
| OLD | NEW |