| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 ], | 411 ], |
| 412 'include_dirs': [ | 412 'include_dirs': [ |
| 413 '.', | 413 '.', |
| 414 ], | 414 ], |
| 415 'sources': [ | 415 'sources': [ |
| 416 'test_extension_linux.cc', | 416 'test_extension_linux.cc', |
| 417 ], | 417 ], |
| 418 'defines': [ | 418 'defines': [ |
| 419 'DART_SHARED_LIB', | 419 'DART_SHARED_LIB', |
| 420 ], | 420 ], |
| 421 'ldflags': [ |
| 422 '-ldl', |
| 423 ], |
| 421 }, | 424 }, |
| 422 ], | 425 ], |
| 423 }], | 426 }], |
| 424 ], | 427 ], |
| 425 } | 428 } |
| 426 | 429 |
| OLD | NEW |