Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(531)

Unified Diff: utils/compiler/compiler.gyp

Issue 2992593002: [infra] Begin removing gyp (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: utils/compiler/compiler.gyp
diff --git a/utils/compiler/compiler.gyp b/utils/compiler/compiler.gyp
deleted file mode 100644
index 272dd0aa137175f1b01b69c4dca86fadf17c7063..0000000000000000000000000000000000000000
--- a/utils/compiler/compiler.gyp
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-{
- 'variables': {
- 'dart_dir': '../..',
- },
- 'targets': [
- {
- 'target_name': 'dart2js',
- 'type': 'none',
- 'dependencies': [
- '../../runtime/dart-runtime.gyp:dart',
- 'dart2js_files_stamp',
- ],
- 'actions': [
- {
- 'action_name': 'generate_snapshots',
- 'inputs': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
- '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart',
- '<!@(["python", "../../tools/list_files.py", "relative", '
- '"\\.dart$", '
- '"../../runtime/lib", '
- '"../../sdk/lib/_internal/dartdoc"])',
- 'create_snapshot.dart',
- '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp',
- '../../tools/VERSION',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
- '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
- ],
- 'action': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
- '--packages=../../.packages',
- 'create_snapshot.dart',
- '--output_dir=<(SHARED_INTERMEDIATE_DIR)',
- '--dart2js_main=pkg/compiler/lib/src/dart2js.dart',
- ],
- },
- ],
- },
- # Other targets depend on dart2js files, but have to many inputs,
- # which causes issues on some platforms.
- # This target lists all the files in pkg/compiler,
- # and creates a single dart2js_files.stamp
- {
- 'target_name': 'dart2js_files_stamp',
- 'type': 'none',
- 'actions': [
- {
- 'action_name': 'make_dart2js_files_stamp',
- 'inputs': [
- '../../tools/create_timestamp_file.py',
- '<!@(["python", "../../tools/list_files.py", "relative", '
- '"\\.dart$", '
- ' "../../pkg/compiler/lib"])',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp',
- ],
- 'action': [
- 'python', '../../tools/create_timestamp_file.py',
- '<@(_outputs)',
- ],
- },
- ],
- }
- ],
-}

Powered by Google App Engine
This is Rietveld 408576698