Merge pull request #2425 from mpcomplete/gcm.deps

Add flutter_gcm back to build deps if --enable-gcm is present.
This commit is contained in:
Matt Perry 2016-02-29 14:24:23 -05:00
commit 8beadfdc19
2 changed files with 4 additions and 0 deletions

3
DEPS
View File

@ -88,6 +88,9 @@ deps = {
# TODO(jackson): Remove this once we're able to build Firebase on its own Travis instance
'src/third_party/firebase':
'https://github.com/collinjackson/firebase-sdk.git@master',
'src/third_party/gcm':
'https://github.com/flutter/flutter_gcm.git@master',
}
deps_os = {

View File

@ -46,5 +46,6 @@ group("sky") {
}
if (enable_gcm) {
deps += [ "//third_party/gcm:gcm" ]
}
}