| 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
|
|
|
|
|