| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 ], | 255 ], |
| 256 'message': 'Generating ''<(corelib_impl_patch_cc_file)'' file.' | 256 'message': 'Generating ''<(corelib_impl_patch_cc_file)'' file.' |
| 257 }, | 257 }, |
| 258 ] | 258 ] |
| 259 }, | 259 }, |
| 260 { | 260 { |
| 261 'target_name': 'generate_math_cc_file', | 261 'target_name': 'generate_math_cc_file', |
| 262 'type': 'none', | 262 'type': 'none', |
| 263 'includes': [ | 263 'includes': [ |
| 264 # Load the shared math library sources. | 264 # Load the shared math library sources. |
| 265 '../../lib/math/math_sources.gypi', | 265 '../../corelib/unified/math/math_sources.gypi', |
| 266 ], | 266 ], |
| 267 'sources/': [ | 267 'sources/': [ |
| 268 # Exclude all .[cc|h] files. | 268 # Exclude all .[cc|h] files. |
| 269 # This is only here for reference. Excludes happen after | 269 # This is only here for reference. Excludes happen after |
| 270 # variable expansion, so the script has to do its own | 270 # variable expansion, so the script has to do its own |
| 271 # exclude processing of the sources being passed. | 271 # exclude processing of the sources being passed. |
| 272 ['exclude', '\\.cc|h$'], | 272 ['exclude', '\\.cc|h$'], |
| 273 ], | 273 ], |
| 274 'actions': [ | 274 'actions': [ |
| 275 { | 275 { |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 '--include', 'INTENTIONALLY_LEFT_BLANK', | 507 '--include', 'INTENTIONALLY_LEFT_BLANK', |
| 508 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 508 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
| 509 '<(snapshot_test_dart_file)', | 509 '<(snapshot_test_dart_file)', |
| 510 ], | 510 ], |
| 511 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 511 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 512 }, | 512 }, |
| 513 ] | 513 ] |
| 514 }, | 514 }, |
| 515 ] | 515 ] |
| 516 } | 516 } |
| OLD | NEW |