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

Side by Side Diff: Makefile

Issue 1196293003: Initial support for generating client and server stubs for Dart. (Closed) Base URL: https://github.com/dart-lang/dart-protoc-plugin.git@master
Patch Set: Created 5 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 | lib/client_generator.dart » ('j') | lib/client_generator.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/client_generator.dart \
4 lib/code_generator.dart \ 5 lib/code_generator.dart \
5 lib/enum_generator.dart \ 6 lib/enum_generator.dart \
6 lib/exceptions.dart \ 7 lib/exceptions.dart \
7 lib/extension_generator.dart \ 8 lib/extension_generator.dart \
8 lib/file_generator.dart \ 9 lib/file_generator.dart \
9 lib/indenting_writer.dart \ 10 lib/indenting_writer.dart \
10 lib/message_generator.dart \ 11 lib/message_generator.dart \
11 lib/options.dart \ 12 lib/options.dart \
12 lib/output_config.dart \ 13 lib/output_config.dart \
13 lib/protobuf_field.dart \ 14 lib/protobuf_field.dart \
14 lib/protoc.dart \ 15 lib/protoc.dart \
16 lib/service_generator.dart \
15 lib/src/descriptor.pb.dart \ 17 lib/src/descriptor.pb.dart \
16 lib/src/plugin.pb.dart \ 18 lib/src/plugin.pb.dart \
17 lib/writer.dart 19 lib/writer.dart
18 20
19 OUTPUT_DIR=out 21 OUTPUT_DIR=out
20 PLUGIN_NAME=protoc-gen-dart 22 PLUGIN_NAME=protoc-gen-dart
21 PLUGIN_PATH=$(OUTPUT_DIR)/$(PLUGIN_NAME) 23 PLUGIN_PATH=$(OUTPUT_DIR)/$(PLUGIN_NAME)
22 24
23 TEST_PROTO_LIST = \ 25 TEST_PROTO_LIST = \
24 google/protobuf/unittest_import \ 26 google/protobuf/unittest_import \
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 update-pregenerated: $(PLUGIN_PATH) $(PREGENERATED_SRCS) 70 update-pregenerated: $(PLUGIN_PATH) $(PREGENERATED_SRCS)
69 protoc --dart_out=lib/src -Ilib --plugin=protoc-gen-dart=$(realpath $(PL UGIN_PATH)) $(PREGENERATED_SRCS) 71 protoc --dart_out=lib/src -Ilib --plugin=protoc-gen-dart=$(realpath $(PL UGIN_PATH)) $(PREGENERATED_SRCS)
70 72
71 build-test-protos: $(TEST_PROTO_LIBS) 73 build-test-protos: $(TEST_PROTO_LIBS)
72 74
73 run-tests: build-test-protos 75 run-tests: build-test-protos
74 dart --checked test/all_tests.dart 76 dart --checked test/all_tests.dart
75 77
76 clean: 78 clean:
77 rm -rf $(OUTPUT_DIR) 79 rm -rf $(OUTPUT_DIR)
OLDNEW
« no previous file with comments | « no previous file | lib/client_generator.dart » ('j') | lib/client_generator.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698