Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'builtin_in_cc_file': 'builtin_in.cc', | 7 'builtin_in_cc_file': 'builtin_in.cc', |
| 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', | 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', |
| 9 'snapshot_in_cc_file': 'snapshot_in.cc', | 9 'snapshot_in_cc_file': 'snapshot_in.cc', |
| 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', | 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 'libdart_lib_withcore', | 80 'libdart_lib_withcore', |
| 81 'libdart_vm', | 81 'libdart_vm', |
| 82 'libjscre', | 82 'libjscre', |
| 83 'libdouble_conversion', | 83 'libdouble_conversion', |
| 84 ], | 84 ], |
| 85 'include_dirs': [ | 85 'include_dirs': [ |
| 86 '..', | 86 '..', |
| 87 ], | 87 ], |
| 88 'sources': [ | 88 'sources': [ |
| 89 '../include/dart_api.h', | 89 '../include/dart_api.h', |
| 90 '../include/dart_dapi.h', | |
|
siva
2011/12/07 05:44:48
would dart_ddi.h (ddi for dart debug interface) an
hausner
2011/12/07 22:14:26
Agree. Renamed as discussed in person.
| |
| 90 '../vm/dart_api_impl.cc', | 91 '../vm/dart_api_impl.cc', |
| 92 '../vm/dart_dapi_impl.cc', | |
| 91 ], | 93 ], |
| 92 }, | 94 }, |
| 93 { | 95 { |
| 94 # Completely statically linked binary for generating snapshots. | 96 # Completely statically linked binary for generating snapshots. |
| 95 'target_name': 'gen_snapshot', | 97 'target_name': 'gen_snapshot', |
| 96 'type': 'executable', | 98 'type': 'executable', |
| 97 'dependencies': [ | 99 'dependencies': [ |
| 98 'libdart_withcore', | 100 'libdart_withcore', |
| 99 'libdart_builtin', | 101 'libdart_builtin', |
| 100 ], | 102 ], |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 236 'conditions': [ | 238 'conditions': [ |
| 237 ['OS=="win"', { | 239 ['OS=="win"', { |
| 238 'link_settings': { | 240 'link_settings': { |
| 239 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 241 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 240 }, | 242 }, |
| 241 }], | 243 }], |
| 242 ], | 244 ], |
| 243 }, | 245 }, |
| 244 ], | 246 ], |
| 245 } | 247 } |
| OLD | NEW |