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

Side by Side Diff: runtime/bin/platform_macos.cc

Issue 1276293003: - Do not include crt_externs.h on iOS. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <mach-o/dyld.h> 8 #include <mach-o/dyld.h>
9 #include <sys/types.h> 9 #include <sys/types.h>
10 #include <sys/sysctl.h> 10 #include <sys/sysctl.h>
11 11
12 #include "bin/file.h" 12 #include "bin/file.h"
13 #include "bin/platform.h" 13 #include "bin/platform.h"
14 14
15 #if !defined(TARGET_OS_IOS)
15 #include <crt_externs.h> // NOLINT 16 #include <crt_externs.h> // NOLINT
17 #endif // !defined(TARGET_OS_IOS)
16 #include <signal.h> // NOLINT 18 #include <signal.h> // NOLINT
17 #include <string.h> // NOLINT 19 #include <string.h> // NOLINT
18 #include <unistd.h> // NOLINT 20 #include <unistd.h> // NOLINT
19 21
20 #include "bin/fdutils.h" 22 #include "bin/fdutils.h"
21 23
22 24
23 namespace dart { 25 namespace dart {
24 namespace bin { 26 namespace bin {
25 27
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 // Return the canonical path as the returned path might contain symlinks. 117 // Return the canonical path as the returned path might contain symlinks.
116 char* canon_path = File::GetCanonicalPath(path); 118 char* canon_path = File::GetCanonicalPath(path);
117 free(path); 119 free(path);
118 return canon_path; 120 return canon_path;
119 } 121 }
120 122
121 } // namespace bin 123 } // namespace bin
122 } // namespace dart 124 } // namespace dart
123 125
124 #endif // defined(TARGET_OS_MACOS) 126 #endif // defined(TARGET_OS_MACOS)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698