Chromium Code Reviews| Index: runtime/bin/bin.gypi |
| diff --git a/runtime/bin/bin.gypi b/runtime/bin/bin.gypi |
| index 4b46c99d3de27ae01403bfa47000725b36191b0f..345ea6d13adb261642481db72816c1029345b4b8 100644 |
| --- a/runtime/bin/bin.gypi |
| +++ b/runtime/bin/bin.gypi |
| @@ -578,6 +578,41 @@ |
| ] |
| }, |
| { |
| + # dart_product binary. |
| + 'target_name': 'dart_product', |
| + 'type': 'executable', |
| + 'dependencies': [ |
| + 'libdart', |
| + 'libdart_builtin', |
| + 'libdart_io', |
| + 'generate_snapshot_file#host', |
|
Cutch
2016/02/12 18:41:44
Removed.
|
| + ], |
| + 'include_dirs': [ |
| + '..', |
| + '../../third_party/', # Zlib |
| + ], |
| + 'defines': [ |
| + 'DART_PRODUCT_BINARY', |
| + ], |
| + 'sources': [ |
| + 'main.cc', |
| + 'builtin_common.cc', |
| + 'builtin_natives.cc', |
| + 'builtin_nolib.cc', |
| + 'builtin.h', |
| + 'io_natives.h', |
| + 'snapshot_empty.cc', |
| + 'observatory_assets_empty.cc', |
| + ], |
| + 'conditions': [ |
| + ['OS=="win"', { |
| + 'link_settings': { |
| + 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], |
| + }, |
| + }], |
| + ], |
| + }, |
| + { |
| # dart binary with a snapshot of corelibs built in. |
| 'target_name': 'dart', |
| 'type': 'executable', |