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

Side by Side Diff: pkg/analyzer/tool/generate_files

Issue 1414903005: Begin generating code for summary serialization/deserialization. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix handling of List<int> Created 5 years, 1 month 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 | « pkg/analyzer/lib/src/summary/format.dart ('k') | pkg/analyzer/tool/summary/check_test.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 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 # 5 #
6 # This script executes code generation tools found in the analyzer 6 # This script executes code generation tools found in the analyzer
7 # "tool" directory. 7 # "tool" directory.
8 8
9 set -e 9 set -e
10 10
(...skipping 30 matching lines...) Expand all
41 PKG_DIR="${BUILD_DIR}/packages" 41 PKG_DIR="${BUILD_DIR}/packages"
42 42
43 DART="${BIN_DIR}/dart" 43 DART="${BIN_DIR}/dart"
44 44
45 declare -a VM_OPTIONS 45 declare -a VM_OPTIONS
46 VM_OPTIONS+=("--checked") 46 VM_OPTIONS+=("--checked")
47 VM_OPTIONS+=("--package-root=${PKG_DIR}") 47 VM_OPTIONS+=("--package-root=${PKG_DIR}")
48 48
49 cd "${SCRIPT_DIR}" 49 cd "${SCRIPT_DIR}"
50 "${DART}" "${VM_OPTIONS[@]}" "task_dependency_graph/generate.dart" 50 "${DART}" "${VM_OPTIONS[@]}" "task_dependency_graph/generate.dart"
51 "${DART}" "${VM_OPTIONS[@]}" "summary/generate.dart"
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.dart ('k') | pkg/analyzer/tool/summary/check_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698