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 'builtin_in_cc_file': '../bin/builtin_in.cc', | 7 'builtin_in_cc_file': '../bin/builtin_in.cc', |
8 'async_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_gen.cc', | 8 'async_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_gen.cc', |
9 'async_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_patch_gen.cc', | 9 'async_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/async_patch_gen.cc', |
10 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', | 10 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 ] | 356 ] |
357 }, | 357 }, |
358 { | 358 { |
359 'target_name': 'generate_collection_dev_cc_file', | 359 'target_name': 'generate_collection_dev_cc_file', |
360 'type': 'none', | 360 'type': 'none', |
361 'variables': { | 361 'variables': { |
362 'collection_dev_dart': '<(SHARED_INTERMEDIATE_DIR)/collection_dev_gen.da
rt', | 362 'collection_dev_dart': '<(SHARED_INTERMEDIATE_DIR)/collection_dev_gen.da
rt', |
363 }, | 363 }, |
364 'includes': [ | 364 'includes': [ |
365 # Load the shared collection_dev library sources. | 365 # Load the shared collection_dev library sources. |
366 '../../sdk/lib/collection_dev/collection_dev_sources.gypi', | 366 '../../sdk/lib/_collection_dev/collection_dev_sources.gypi', |
367 ], | 367 ], |
368 'sources/': [ | 368 'sources/': [ |
369 # Exclude all .[cc|h] files. | 369 # Exclude all .[cc|h] files. |
370 # This is only here for reference. Excludes happen after | 370 # This is only here for reference. Excludes happen after |
371 # variable expansion, so the script has to do its own | 371 # variable expansion, so the script has to do its own |
372 # exclude processing of the sources being passed. | 372 # exclude processing of the sources being passed. |
373 ['exclude', '\\.cc|h$'], | 373 ['exclude', '\\.cc|h$'], |
374 ], | 374 ], |
375 'actions': [ | 375 'actions': [ |
376 { | 376 { |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 '--include', 'INTENTIONALLY_LEFT_BLANK', | 852 '--include', 'INTENTIONALLY_LEFT_BLANK', |
853 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 853 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
854 '<(snapshot_test_dart_file)', | 854 '<(snapshot_test_dart_file)', |
855 ], | 855 ], |
856 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 856 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
857 }, | 857 }, |
858 ] | 858 ] |
859 }, | 859 }, |
860 ] | 860 ] |
861 } | 861 } |
OLD | NEW |