Chromium Code Reviews| 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 'dart_dir': '../..', | 7 'dart_dir': '../..', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'dart2js', | 11 'target_name': 'dart2js', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../runtime/dart-runtime.gyp:dart', | 14 '../../runtime/dart-runtime.gyp:dart', |
| 15 '../../pkg/pkg.gyp:pkg_packages', | 15 '../../pkg/pkg.gyp:pkg_packages', |
| 16 'dart2js_files_stamp', | |
| 16 ], | 17 ], |
| 17 'actions': [ | 18 'actions': [ |
| 18 { | 19 { |
| 19 'action_name': 'generate_snapshots', | 20 'action_name': 'generate_snapshots', |
| 20 'inputs': [ | 21 'inputs': [ |
| 21 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 22 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 22 '../../sdk/lib/_internal/libraries.dart', | 23 '../../sdk/lib/_internal/libraries.dart', |
| 23 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib/_internal/compiler", "../../runtime/lib", "../../sdk/lib/_internal/dartdoc"] )', | 24 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../runt ime/lib", "../../sdk/lib/_internal/dartdoc"])', |
| 24 'create_snapshot.dart', | 25 'create_snapshot.dart', |
| 26 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', | |
| 25 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', | 27 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', |
| 26 '../../tools/VERSION', | 28 '../../tools/VERSION', |
| 27 ], | 29 ], |
| 28 'outputs': [ | 30 'outputs': [ |
| 29 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
| 30 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
| 31 ], | 33 ], |
| 32 'action': [ | 34 'action': [ |
| 33 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 34 'create_snapshot.dart', | 36 'create_snapshot.dart', |
| 35 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', | 37 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', |
| 36 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt', | 38 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt', |
| 37 '--docgen_main=pkg/docgen/bin/docgen.dart', | 39 '--docgen_main=pkg/docgen/bin/docgen.dart', |
| 38 '--package_root=<(PRODUCT_DIR)/packages/', | 40 '--package_root=<(PRODUCT_DIR)/packages/', |
| 39 ], | 41 ], |
| 40 }, | 42 }, |
| 41 ], | 43 ], |
| 42 }, | 44 }, |
| 45 # Other targets depend on dart2js files, but have to many inputs, | |
|
Bill Hesse
2014/04/22 12:47:03
too many inputs
| |
| 46 # which causes issues on some platforms. | |
| 47 # This target lists all the files in sdk/lib/_internal/compiler, | |
| 48 # and creates a single dart2js_files.stamp | |
| 49 { | |
| 50 'target_name': 'dart2js_files_stamp', | |
| 51 'type': 'none', | |
| 52 'actions': [ | |
| 53 { | |
| 54 'action_name': 'make_dart2js_files_stamp', | |
| 55 'inputs': [ | |
| 56 '../../tools/create_timestamp_file.py', | |
| 57 '<!@(["python", "../../tools/list_files.py", "\\.dart$",' | |
| 58 ' "../../sdk/lib/_internal/compiler"])', | |
| 59 ], | |
| 60 'outputs': [ | |
| 61 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', | |
| 62 ], | |
| 63 'action': [ | |
| 64 'python', '../../tools/create_timestamp_file.py', | |
| 65 '<@(_outputs)', | |
| 66 ], | |
| 67 }, | |
| 68 ], | |
| 69 } | |
| 43 ], | 70 ], |
| 44 } | 71 } |
| OLD | NEW |