Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', | 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', |
| 10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc', | 10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc', |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 213 '../platform/platform_sources.gypi', | 213 '../platform/platform_sources.gypi', |
| 214 ], | 214 ], |
| 215 'sources/': [ | 215 'sources/': [ |
| 216 ['exclude', '_test\\.(cc|h)$'], | 216 ['exclude', '_test\\.(cc|h)$'], |
| 217 ], | 217 ], |
| 218 'conditions': [ | 218 'conditions': [ |
| 219 ['OS=="win"', {'sources/' : [ | 219 ['OS=="win"', {'sources/' : [ |
| 220 ['exclude', 'fdutils.h'], | 220 ['exclude', 'fdutils.h'], |
| 221 ]}], | 221 ]}], |
| 222 ], | 222 ], |
| 223 'ldflags': [ | |
|
Anders Johnsen
2012/02/23 14:10:39
Win32?
Bill Hesse
2012/02/23 14:20:14
Good point. This should only be done on the linux
| |
| 224 '-ldl', | |
| 225 ], | |
| 223 }, | 226 }, |
| 224 { | 227 { |
| 225 'target_name': 'libdart_withcore', | 228 'target_name': 'libdart_withcore', |
| 226 'type': 'static_library', | 229 'type': 'static_library', |
| 227 'dependencies': [ | 230 'dependencies': [ |
| 228 'libdart_lib_withcore', | 231 'libdart_lib_withcore', |
| 229 'libdart_vm', | 232 'libdart_vm', |
| 230 'libjscre', | 233 'libjscre', |
| 231 'libdouble_conversion', | 234 'libdouble_conversion', |
| 232 ], | 235 ], |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 411 ], | 414 ], |
| 412 'include_dirs': [ | 415 'include_dirs': [ |
| 413 '.', | 416 '.', |
| 414 ], | 417 ], |
| 415 'sources': [ | 418 'sources': [ |
| 416 'test_extension_linux.cc', | 419 'test_extension_linux.cc', |
| 417 ], | 420 ], |
| 418 'defines': [ | 421 'defines': [ |
| 419 'DART_SHARED_LIB', | 422 'DART_SHARED_LIB', |
| 420 ], | 423 ], |
| 421 'ldflags': [ | |
| 422 '-ldl', | |
| 423 ], | |
| 424 }, | 424 }, |
| 425 ], | 425 ], |
| 426 }], | 426 }], |
| 427 ], | 427 ], |
| 428 } | 428 } |
| 429 | 429 |
| OLD | NEW |