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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'message': 'Generating ''<(builtin_cc_file)'' file.' | 42 'message': 'Generating ''<(builtin_cc_file)'' file.' |
43 }, | 43 }, |
44 ] | 44 ] |
45 }, | 45 }, |
46 { | 46 { |
47 'target_name': 'generate_io_cc_file', | 47 'target_name': 'generate_io_cc_file', |
48 'type': 'none', | 48 'type': 'none', |
49 'variables': { | 49 'variables': { |
50 'io_dart': '<(SHARED_INTERMEDIATE_DIR)/io_gen.dart', | 50 'io_dart': '<(SHARED_INTERMEDIATE_DIR)/io_gen.dart', |
51 }, | 51 }, |
52 'sources': [ | |
53 'io.dart', | |
54 ], | |
55 'includes': [ | 52 'includes': [ |
56 '../../sdk/lib/io/iolib_sources.gypi', | 53 '../../sdk/lib/io/iolib_sources.gypi', |
57 ], | 54 ], |
58 'actions': [ | 55 'actions': [ |
59 { | 56 { |
60 'action_name': 'generate_io_dart', | 57 'action_name': 'generate_io_dart', |
61 'inputs': [ | 58 'inputs': [ |
62 '../tools/concat_library.py', | 59 '../tools/concat_library.py', |
63 '<@(_sources)', | 60 '<@(_sources)', |
64 ], | 61 ], |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 ['OS=="mac"', { | 490 ['OS=="mac"', { |
494 'xcode_settings': { | 491 'xcode_settings': { |
495 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 492 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
496 }, | 493 }, |
497 }], | 494 }], |
498 ], | 495 ], |
499 }, | 496 }, |
500 ], | 497 ], |
501 } | 498 } |
502 | 499 |
OLD | NEW |