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

Unified Diff: runtime/bin/bin.gypi

Issue 2624393002: Remove dart_noopt and related parts from the VM. (Closed)
Patch Set: Merge branch 'master' of github.com:dart-lang/sdk into remove-noopt Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/bin/gen_snapshot.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 b870838cc72a7913a914f14e24237d2dc282de42..d5466386345da3cd2d50002b6bd5c7d5401f2fa3 100644
--- a/runtime/bin/bin.gypi
+++ b/runtime/bin/bin.gypi
@@ -1167,63 +1167,6 @@
},
},
{
- # dart binary with a snapshot of corelibs built in and support for testing
- # precompilation (aka --noopt)
- 'target_name': 'dart_noopt',
- 'type': 'executable',
- 'dependencies': [
- 'build_observatory#host',
- 'generate_observatory_assets_cc_file#host',
- 'generate_resources_cc_file#host',
- 'generate_snapshot_file#host',
- 'libdart_builtin',
- 'libdart_io',
- 'libdart_noopt',
- ],
- 'include_dirs': [
- '..',
- ],
- 'sources': [
- 'main.cc',
- 'builtin.h',
- 'builtin_common.cc',
- 'builtin_natives.cc',
- 'builtin_nolib.cc',
- 'io_natives.h',
- 'vmservice_impl.cc',
- 'vmservice_impl.h',
- '<(observatory_assets_cc_file)',
- '<(resources_cc_file)',
- '<(snapshot_cc_file)',
- ],
- 'defines': [
- 'DART_PRECOMPILER',
- ],
- 'conditions': [
- ['OS=="win"', {
- 'link_settings': {
- 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ],
- },
- # Generate an import library on Windows, by exporting a function.
- # Extensions use this import library to link to the API in dart.exe.
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalOptions': [ '/EXPORT:Dart_True' ],
- },
- },
- }],
- ],
- 'configurations': {
- 'Dart_Linux_Base': {
- # Have the linker add all symbols to the dynamic symbol table
- # so that extensions can look them up dynamically in the binary.
- 'ldflags': [
- '-rdynamic',
- ],
- },
- },
- },
- {
# dart binary for running precompiled snapshots without the compiler.
'target_name': 'dart_precompiled_runtime',
'type': 'executable',
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/bin/gen_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698