| 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 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', | 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', |
| 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', | 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', |
| 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 }, | 77 }, |
| 78 ] | 78 ] |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 'target_name': 'generate_io_cc_file', | 81 'target_name': 'generate_io_cc_file', |
| 82 'type': 'none', | 82 'type': 'none', |
| 83 'sources': [ | 83 'sources': [ |
| 84 'io.dart', | 84 'io.dart', |
| 85 ], | 85 ], |
| 86 'includes': [ | 86 'includes': [ |
| 87 '../../lib/io/iolib_sources.gypi', | 87 '../../sdk/lib/io/iolib_sources.gypi', |
| 88 ], | 88 ], |
| 89 'actions': [ | 89 'actions': [ |
| 90 { | 90 { |
| 91 'action_name': 'generate_io_cc', | 91 'action_name': 'generate_io_cc', |
| 92 'inputs': [ | 92 'inputs': [ |
| 93 '../tools/create_string_literal.py', | 93 '../tools/create_string_literal.py', |
| 94 '<(builtin_in_cc_file)', | 94 '<(builtin_in_cc_file)', |
| 95 '<@(_sources)', | 95 '<@(_sources)', |
| 96 ], | 96 ], |
| 97 'outputs': [ | 97 'outputs': [ |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 ['OS=="mac"', { | 557 ['OS=="mac"', { |
| 558 'xcode_settings': { | 558 'xcode_settings': { |
| 559 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 559 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 560 }, | 560 }, |
| 561 }], | 561 }], |
| 562 ], | 562 ], |
| 563 }, | 563 }, |
| 564 ], | 564 ], |
| 565 } | 565 } |
| 566 | 566 |
| OLD | NEW |