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

Side by Side Diff: utils/compiler/compiler.gyp

Issue 1364553002: remove docgen source and targets from build (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: remove scripts Created 5 years, 2 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 unified diff | Download patch
« no previous file with comments | « sdk/bin/dartdocgen.bat ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 {
(...skipping 18 matching lines...) Expand all
29 ], 29 ],
30 'outputs': [ 30 'outputs': [
31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', 32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
33 ], 33 ],
34 'action': [ 34 'action': [
35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
36 'create_snapshot.dart', 36 'create_snapshot.dart',
37 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', 37 '--output_dir=<(SHARED_INTERMEDIATE_DIR)',
38 '--dart2js_main=pkg/compiler/lib/src/dart2js.dart', 38 '--dart2js_main=pkg/compiler/lib/src/dart2js.dart',
39 '--docgen_main=pkg/docgen/bin/docgen.dart',
40 '--package_root=<(PRODUCT_DIR)/packages/', 39 '--package_root=<(PRODUCT_DIR)/packages/',
41 ], 40 ],
42 }, 41 },
43 ], 42 ],
44 }, 43 },
45 # Other targets depend on dart2js files, but have to many inputs, 44 # Other targets depend on dart2js files, but have to many inputs,
46 # which causes issues on some platforms. 45 # which causes issues on some platforms.
47 # This target lists all the files in pkg/compiler, 46 # This target lists all the files in pkg/compiler,
48 # and creates a single dart2js_files.stamp 47 # and creates a single dart2js_files.stamp
49 { 48 {
(...skipping 12 matching lines...) Expand all
62 ], 61 ],
63 'action': [ 62 'action': [
64 'python', '../../tools/create_timestamp_file.py', 63 'python', '../../tools/create_timestamp_file.py',
65 '<@(_outputs)', 64 '<@(_outputs)',
66 ], 65 ],
67 }, 66 },
68 ], 67 ],
69 } 68 }
70 ], 69 ],
71 } 70 }
OLDNEW
« no previous file with comments | « sdk/bin/dartdocgen.bat ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698