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

Side by Side Diff: Makefile

Issue 25708003: Update the protocol buffer compiler plugin to use Int64 from the fixnum package (Closed) Base URL: https://github.com/dart-lang/dart-protoc-plugin.git@master
Patch Set: Created 7 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 | « no previous file | lib/file_generator.dart » ('j') | pubspec.yaml » ('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 bin/protoc_plugin.dart \ 3 bin/protoc_plugin.dart \
3 lib/code_generator.dart \ 4 lib/code_generator.dart \
4 lib/enum_generator.dart \ 5 lib/enum_generator.dart \
5 lib/exceptions.dart \ 6 lib/exceptions.dart \
6 lib/extension_generator.dart \ 7 lib/extension_generator.dart \
7 lib/file_generator.dart \ 8 lib/file_generator.dart \
8 lib/indenting_writer.dart \ 9 lib/indenting_writer.dart \
9 lib/message_generator.dart \ 10 lib/message_generator.dart \
10 lib/protobuf_field.dart \ 11 lib/protobuf_field.dart \
11 lib/protoc.dart \ 12 lib/protoc.dart \
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 update-pregenerated: $(PLUGIN_PATH) $(PREGENERATED_SRCS) 55 update-pregenerated: $(PLUGIN_PATH) $(PREGENERATED_SRCS)
55 protoc --dart_out=lib/src -Ilib --plugin=protoc-gen-dart=$(realpath $(PL UGIN_PATH)) $(PREGENERATED_SRCS) 56 protoc --dart_out=lib/src -Ilib --plugin=protoc-gen-dart=$(realpath $(PL UGIN_PATH)) $(PREGENERATED_SRCS)
56 57
57 build-test-protos: $(TEST_PROTO_LIBS) 58 build-test-protos: $(TEST_PROTO_LIBS)
58 59
59 run-tests: build-test-protos 60 run-tests: build-test-protos
60 dart --checked --package-root=packages/ test/all_tests.dart 61 dart --checked --package-root=packages/ test/all_tests.dart
61 62
62 clean: 63 clean:
63 rm -rf $(OUTPUT_DIR) 64 rm -rf $(OUTPUT_DIR)
OLDNEW
« no previous file with comments | « no previous file | lib/file_generator.dart » ('j') | pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698