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

Side by Side Diff: Makefile

Issue 2043913005: Change how to set the Dart name of a field (Closed) Base URL: git@github.com:dart-lang/dart-protoc-plugin.git@master
Patch Set: better error checking, clean up pubspec Created 4 years, 6 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 | « no previous file | README.md » ('j') | lib/names.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 PLUGIN_SRC = \ 1 PLUGIN_SRC = \
2 prepend.dart \ 2 prepend.dart \
3 bin/protoc_plugin.dart \ 3 bin/protoc_plugin.dart \
4 lib/*.dart \ 4 lib/*.dart \
5 lib/src/descriptor.pb.dart \ 5 lib/src/descriptor.pb.dart \
6 lib/src/plugin.pb.dart 6 lib/src/plugin.pb.dart
7 7
8 OUTPUT_DIR=out 8 OUTPUT_DIR=out
9 PLUGIN_NAME=protoc-gen-dart 9 PLUGIN_NAME=protoc-gen-dart
10 PLUGIN_PATH=$(OUTPUT_DIR)/$(PLUGIN_NAME) 10 PLUGIN_PATH=$(OUTPUT_DIR)/$(PLUGIN_NAME)
11 11
12 BENCHMARK_PROTOS = $(wildcard benchmark/protos/*.proto) 12 BENCHMARK_PROTOS = $(wildcard benchmark/protos/*.proto)
13 13
14 TEST_PROTO_LIST = \ 14 TEST_PROTO_LIST = \
15 google/protobuf/unittest_import \ 15 google/protobuf/unittest_import \
16 google/protobuf/unittest_optimize_for \ 16 google/protobuf/unittest_optimize_for \
17 google/protobuf/unittest \ 17 google/protobuf/unittest \
18 dart_name \
18 dart_options \ 19 dart_options \
19 descriptor_2_5_opensource \ 20 descriptor_2_5_opensource \
20 enum_extension \ 21 enum_extension \
21 map_api \ 22 map_api \
22 map_api2 \ 23 map_api2 \
23 multiple_files_test \ 24 multiple_files_test \
24 nested_extension \ 25 nested_extension \
25 non_nested_extension \ 26 non_nested_extension \
26 reserved_names \ 27 reserved_names \
27 duplicate_names_import \ 28 duplicate_names_import \
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 -Ibenchmark/protos \ 77 -Ibenchmark/protos \
77 --plugin=protoc-gen-dart=$(realpath $(PLUGIN_PATH)) \ 78 --plugin=protoc-gen-dart=$(realpath $(PLUGIN_PATH)) \
78 $(BENCHMARK_PROTOS) 79 $(BENCHMARK_PROTOS)
79 80
80 run-tests: protos 81 run-tests: protos
81 pub run test 82 pub run test
82 83
83 clean: 84 clean:
84 rm -rf benchmark/lib/generated 85 rm -rf benchmark/lib/generated
85 rm -rf $(OUTPUT_DIR) 86 rm -rf $(OUTPUT_DIR)
OLDNEW
« no previous file with comments | « no previous file | README.md » ('j') | lib/names.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698