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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
412 'conditions': [ | 412 'conditions': [ |
413 ['OS=="win"', { | 413 ['OS=="win"', { |
414 'link_settings': { | 414 'link_settings': { |
415 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 415 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
416 }, | 416 }, |
417 }], | 417 }], |
418 ], | 418 ], |
419 }, | 419 }, |
420 ], | 420 ], |
421 'conditions': [ | 421 'conditions': [ |
422 ['OS=="linux"', { | 422 ['OS!="win"', { |
423 'targets': [ | 423 'targets': [ |
424 { | 424 { |
425 'target_name': 'test_extension', | 425 'target_name': 'test_extension', |
426 'type': 'shared_library', | 426 'type': 'shared_library', |
427 'dependencies': [ | 427 'dependencies': [ |
428 ], | 428 ], |
429 'include_dirs': [ | 429 'include_dirs': [ |
430 '.', | 430 '.', |
431 ], | 431 ], |
432 'sources': [ | 432 'sources': [ |
433 'test_extension_linux.cc', | 433 'test_extension_posix.cc', |
Mads Ager (google)
2012/03/06 07:39:50
This should just be test_extension.cc and everythi
| |
434 ], | 434 ], |
435 'defines': [ | 435 'defines': [ |
436 'DART_SHARED_LIB', | 436 'DART_SHARED_LIB', |
437 ], | 437 ], |
438 }, | 438 }, |
439 ], | 439 ], |
440 }], | 440 }], |
441 ], | 441 ], |
442 } | 442 } |
443 | 443 |
OLD | NEW |