diff options
author | dpranke <dpranke@chromium.org> | 2015-02-24 15:29:59 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-24 23:35:10 +0000 |
commit | 12b256492f5fe5a87933aafef00ad4f25af5dc2b (patch) | |
tree | 8234b75a2ce36a261ada32fe1c864bb5c27c1f62 /components | |
parent | dabd39abad0a01181dd6617199b9f2d9e606f065 (diff) | |
download | chromium_src-12b256492f5fe5a87933aafef00ad4f25af5dc2b.zip chromium_src-12b256492f5fe5a87933aafef00ad4f25af5dc2b.tar.gz chromium_src-12b256492f5fe5a87933aafef00ad4f25af5dc2b.tar.bz2 |
Fix the 'gn_all' target in the GN build on android.
One of the components_unittests was missing a dependency on
gmock, but we don't see this on the bots because on Android
we're only building chrome_shell_apk, and not gn_all.
TBR=brettw
BUG=
Review URL: https://codereview.chromium.org/947383004
Cr-Commit-Position: refs/heads/master@{#317918}
Diffstat (limited to 'components')
-rw-r--r-- | components/data_reduction_proxy/content/browser/BUILD.gn | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/data_reduction_proxy/content/browser/BUILD.gn b/components/data_reduction_proxy/content/browser/BUILD.gn index 99e971e..950e947 100644 --- a/components/data_reduction_proxy/content/browser/BUILD.gn +++ b/components/data_reduction_proxy/content/browser/BUILD.gn @@ -37,6 +37,7 @@ if (is_android) { ":browser", "//skia", "//testing/gtest", + "//testing/gmock", "//third_party/mojo/src/mojo/public/cpp/bindings", ] } |