| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |