diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-30 00:38:20 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-30 00:38:20 +0000 |
commit | 803b2edd16b3a997429dc1444a0c8494a4f7c94f (patch) | |
tree | e2ddffab2479d2d7db9cbe45f8b4676d6464ab64 /components/invalidation | |
parent | e271ad6e5ffe52a9717f246150dc6bfb90728596 (diff) | |
download | chromium_src-803b2edd16b3a997429dc1444a0c8494a4f7c94f.zip chromium_src-803b2edd16b3a997429dc1444a0c8494a4f7c94f.tar.gz chromium_src-803b2edd16b3a997429dc1444a0c8494a4f7c94f.tar.bz2 |
components: Fix a couple of the TODO(GYP) todos.
BUG=None
TEST=gn gen out/Debug_gn + build the effected targets with ninja.
R=brettw@chromium.org
TBR=jochen@chromium.org
Review URL: https://codereview.chromium.org/420113003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286362 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/invalidation')
-rw-r--r-- | components/invalidation/BUILD.gn | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/components/invalidation/BUILD.gn b/components/invalidation/BUILD.gn index fd6773a..078ad64 100644 --- a/components/invalidation/BUILD.gn +++ b/components/invalidation/BUILD.gn @@ -81,12 +81,11 @@ static_library("invalidation") { deps = [ "//base", - #"//components/gcm_driver", TODO(GYP) - "//google_apis", + "//components/gcm_driver", "//components/keyed_service/core", - "//components/signin/core/browser:browser", "//components/pref_registry", - #"//components/signin/core/browser", TODO(GYP) + "//components/signin/core/browser", + "//google_apis", "//sync", "//third_party/cacheinvalidation", #'../jingle/jingle.gyp:notifier', TODO(GYP) @@ -124,6 +123,7 @@ static_library("test_support") { deps = [ "//base", + "//components/gcm_driver:test_support", "//components/keyed_service/core", "//google_apis", "//net", @@ -133,6 +133,5 @@ static_library("test_support") { #'../jingle/jingle.gyp:notifier', TODO(GYP) #'../jingle/jingle.gyp:notifier_test_util', TODO(GYP) #'../sync/sync.gyp:test_support_sync_notifier', TODO(GYP) - #'gcm_driver_test_support', TODO(GYP) ] } |