| 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 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', | 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', |
| 9 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc', | 9 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc', |
| 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', | 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 ], | 111 ], |
| 112 'include_dirs': [ | 112 'include_dirs': [ |
| 113 '..', | 113 '..', |
| 114 ], | 114 ], |
| 115 }, | 115 }, |
| 116 { | 116 { |
| 117 'target_name': 'generate_corelib_cc_file', | 117 'target_name': 'generate_corelib_cc_file', |
| 118 'type': 'none', | 118 'type': 'none', |
| 119 'includes': [ | 119 'includes': [ |
| 120 # Load the shared core library sources. | 120 # Load the shared core library sources. |
| 121 '../../corelib/src/corelib_sources.gypi', | 121 '../../lib/core/corelib_sources.gypi', |
| 122 ], | 122 ], |
| 123 'sources/': [ | 123 'sources/': [ |
| 124 # Exclude all .[cc|h] files. | 124 # Exclude all .[cc|h] files. |
| 125 # This is only here for reference. Excludes happen after | 125 # This is only here for reference. Excludes happen after |
| 126 # variable expansion, so the script has to do its own | 126 # variable expansion, so the script has to do its own |
| 127 # exclude processing of the sources being passed. | 127 # exclude processing of the sources being passed. |
| 128 ['exclude', '\\.cc|h$'], | 128 ['exclude', '\\.cc|h$'], |
| 129 ], | 129 ], |
| 130 'actions': [ | 130 'actions': [ |
| 131 { | 131 { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 ], | 187 ], |
| 188 'message': 'Generating ''<(corelib_patch_cc_file)'' file.' | 188 'message': 'Generating ''<(corelib_patch_cc_file)'' file.' |
| 189 }, | 189 }, |
| 190 ] | 190 ] |
| 191 }, | 191 }, |
| 192 { | 192 { |
| 193 'target_name': 'generate_corelib_impl_cc_file', | 193 'target_name': 'generate_corelib_impl_cc_file', |
| 194 'type': 'none', | 194 'type': 'none', |
| 195 'includes': [ | 195 'includes': [ |
| 196 # Load the shared core library sources. | 196 # Load the shared core library sources. |
| 197 '../../corelib/src/implementation/corelib_impl_sources.gypi', | 197 '../../lib/coreimpl/corelib_impl_sources.gypi', |
| 198 ], | 198 ], |
| 199 'sources/': [ | 199 'sources/': [ |
| 200 # Exclude all .[cc|h] files. | 200 # Exclude all .[cc|h] files. |
| 201 # This is only here for reference. Excludes happen after | 201 # This is only here for reference. Excludes happen after |
| 202 # variable expansion, so the script has to do its own | 202 # variable expansion, so the script has to do its own |
| 203 # exclude processing of the sources being passed. | 203 # exclude processing of the sources being passed. |
| 204 ['exclude', '\\.cc|h$'], | 204 ['exclude', '\\.cc|h$'], |
| 205 ], | 205 ], |
| 206 'actions': [ | 206 'actions': [ |
| 207 { | 207 { |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 '--include', 'INTENTIONALLY_LEFT_BLANK', | 515 '--include', 'INTENTIONALLY_LEFT_BLANK', |
| 516 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 516 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
| 517 '<(snapshot_test_dart_file)', | 517 '<(snapshot_test_dart_file)', |
| 518 ], | 518 ], |
| 519 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 519 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 520 }, | 520 }, |
| 521 ] | 521 ] |
| 522 }, | 522 }, |
| 523 ] | 523 ] |
| 524 } | 524 } |
| OLD | NEW |