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

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

Issue 1579643005: Add more dart:io related precompilation roots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 <stdlib.h> 5 #include <stdlib.h>
6 #include <string.h> 6 #include <string.h>
7 #include <stdio.h> 7 #include <stdio.h>
8 8
9 #include "include/dart_api.h" 9 #include "include/dart_api.h"
10 #include "include/dart_tools_api.h" 10 #include "include/dart_tools_api.h"
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 { "dart:_builtin", "::", "_setWorkingDirectory" }, 1238 { "dart:_builtin", "::", "_setWorkingDirectory" },
1239 { "dart:_builtin", "::", "_setPackageRoot" }, 1239 { "dart:_builtin", "::", "_setPackageRoot" },
1240 { "dart:_builtin", "::", "_addPackageMapEntry" }, 1240 { "dart:_builtin", "::", "_addPackageMapEntry" },
1241 { "dart:_builtin", "::", "_loadPackagesMap" }, 1241 { "dart:_builtin", "::", "_loadPackagesMap" },
1242 { "dart:_builtin", "::", "_loadDataAsync" }, 1242 { "dart:_builtin", "::", "_loadDataAsync" },
1243 { "dart:io", "::", "_makeUint8ListView" }, 1243 { "dart:io", "::", "_makeUint8ListView" },
1244 { "dart:io", "::", "_makeDatagram" }, 1244 { "dart:io", "::", "_makeDatagram" },
1245 { "dart:io", "::", "_setupHooks" }, 1245 { "dart:io", "::", "_setupHooks" },
1246 { "dart:io", "::", "_getWatchSignalInternal" }, 1246 { "dart:io", "::", "_getWatchSignalInternal" },
1247 { "dart:io", "CertificateException", "CertificateException." }, 1247 { "dart:io", "CertificateException", "CertificateException." },
1248 { "dart:io", "Directory", "Directory." },
1249 { "dart:io", "File", "File." },
1250 { "dart:io", "FileSystemException", "FileSystemException." },
1248 { "dart:io", "HandshakeException", "HandshakeException." }, 1251 { "dart:io", "HandshakeException", "HandshakeException." },
1252 { "dart:io", "Link", "Link." },
1249 { "dart:io", "OSError", "OSError." }, 1253 { "dart:io", "OSError", "OSError." },
1250 { "dart:io", "TlsException", "TlsException." }, 1254 { "dart:io", "TlsException", "TlsException." },
1251 { "dart:io", "X509Certificate", "X509Certificate._" }, 1255 { "dart:io", "X509Certificate", "X509Certificate._" },
1252 { "dart:io", "_ExternalBuffer", "set:data" }, 1256 { "dart:io", "_ExternalBuffer", "set:data" },
1253 { "dart:io", "_Platform", "set:_nativeScript" }, 1257 { "dart:io", "_Platform", "set:_nativeScript" },
1254 { "dart:io", "_ProcessStartStatus", "set:_errorCode" }, 1258 { "dart:io", "_ProcessStartStatus", "set:_errorCode" },
1255 { "dart:io", "_ProcessStartStatus", "set:_errorMessage" }, 1259 { "dart:io", "_ProcessStartStatus", "set:_errorMessage" },
1256 { "dart:io", "_SecureFilterImpl", "get:ENCRYPTED_SIZE" }, 1260 { "dart:io", "_SecureFilterImpl", "get:ENCRYPTED_SIZE" },
1257 { "dart:io", "_SecureFilterImpl", "get:SIZE" }, 1261 { "dart:io", "_SecureFilterImpl", "get:SIZE" },
1258 { "dart:vmservice_io", "::", "main" }, 1262 { "dart:vmservice_io", "::", "main" },
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1553 Platform::Exit(Process::GlobalExitCode()); 1557 Platform::Exit(Process::GlobalExitCode());
1554 } 1558 }
1555 1559
1556 } // namespace bin 1560 } // namespace bin
1557 } // namespace dart 1561 } // namespace dart
1558 1562
1559 int main(int argc, char** argv) { 1563 int main(int argc, char** argv) {
1560 dart::bin::main(argc, argv); 1564 dart::bin::main(argc, argv);
1561 UNREACHABLE(); 1565 UNREACHABLE();
1562 } 1566 }
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