mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
c82bf703ae
In inttest/proto_gpb, replace the external dependency to gpb, a protocol buffer compiler, with a simple mock. The mock provides enough of what is needed for inttest only, which is to generate some dummy content, but with proper file names. As a result, the increased timeout for the proto_gpb inttest should no longer be needed (inttest/proto_gpb/retest.config), both since the mock is now much faster to compile, and since any network bandwidth or connectivity issues have now been eliminated.
16 lines
320 B
Erlang
16 lines
320 B
Erlang
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% ex: ts=4 sw=4 ft=erlang et
|
|
|
|
{erl_opts,
|
|
[
|
|
{platform_define, "R13|R14", 'NO_CALLBACK_ATTRIBUTE'}
|
|
]}.
|
|
|
|
{deps,
|
|
[
|
|
{gpb, [], {rsync, "../../../inttest/proto_gpb/mock/gpb"}}
|
|
]}.
|
|
|
|
{proto_compiler, gpb}.
|
|
|
|
{gpb_opts, [{module_name_suffix, "_gpb"}]}.
|