| 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 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', | 8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', |
| 9 'builtin_in_cc_file': 'builtin_in.cc', | 9 'builtin_in_cc_file': 'builtin_in.cc', |
| 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', | 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 'AdditionalDependencies': [ 'dart.lib' ], | 528 'AdditionalDependencies': [ 'dart.lib' ], |
| 529 'AdditionalLibraryDirectories': [ '<(PRODUCT_DIR)' ], | 529 'AdditionalLibraryDirectories': [ '<(PRODUCT_DIR)' ], |
| 530 }, | 530 }, |
| 531 }, | 531 }, |
| 532 }], | 532 }], |
| 533 ['OS=="mac"', { | 533 ['OS=="mac"', { |
| 534 'xcode_settings': { | 534 'xcode_settings': { |
| 535 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 535 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 536 }, | 536 }, |
| 537 }], | 537 }], |
| 538 ['OS=="linux"', { |
| 539 'cflags': [ |
| 540 '-fPIC', |
| 541 ], |
| 542 }], |
| 538 ], | 543 ], |
| 539 }, | 544 }, |
| 540 ], | 545 ], |
| 541 } | 546 } |
| 542 | 547 |
| OLD | NEW |