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

Unified Diff: Makefile

Issue 2013343002: Move server-side service stubs to .pbserver.dart (Closed) Base URL: git@github.com:dart-lang/dart-protoc-plugin.git@cleanup
Patch Set: bump version Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/file_generator.dart » ('j') | test/file_generator_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index 03df90790130f73b95e99e0d2450971ad142b115..60575c4afe5d7e35bd8760ed477f86e240332841 100644
--- a/Makefile
+++ b/Makefile
@@ -33,9 +33,14 @@ TEST_PROTO_LIST = \
toplevel_import \
toplevel
TEST_PROTO_DIR=$(OUTPUT_DIR)/protos
-TEST_PROTO_LIBS=$(foreach proto, $(TEST_PROTO_LIST), $(TEST_PROTO_DIR)/$(proto).pb.dart $(TEST_PROTO_DIR)/$(proto).pbjson.dart)
+TEST_PROTO_LIBS=$(foreach f, $(TEST_PROTO_LIST), \
+ $(TEST_PROTO_DIR)/$(f).pb.dart \
+ $(TEST_PROTO_DIR)/$(f).pbenum.dart \
+ $(TEST_PROTO_DIR)/$(f).pbserver.dart \
+ $(TEST_PROTO_DIR)/$(f).pbjson.dart)
TEST_PROTO_SRC_DIR=test/protos
-TEST_PROTO_SRCS=$(foreach proto, $(TEST_PROTO_LIST), $(TEST_PROTO_SRC_DIR)/$(proto).proto)
+TEST_PROTO_SRCS=$(foreach proto, $(TEST_PROTO_LIST), \
+ $(TEST_PROTO_SRC_DIR)/$(proto).proto)
PREGENERATED_SRCS=lib/descriptor.proto lib/plugin.proto
« no previous file with comments | « no previous file | lib/file_generator.dart » ('j') | test/file_generator_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698