From 09981a9eb8bff00e2644f3174e5651b5734eed9a Mon Sep 17 00:00:00 2001 From: cjhopman Date: Mon, 27 Oct 2014 10:11:18 -0700 Subject: GN: Fix Android component build This change makes all libraries in the Android component build link successfully (including fixing and enabling libchrome_shell). This also makes all the libraries link in a component build for Linux, but without bot coverage for that platform it'll surely regress. This is almost entirely just fixing some missing/incorrect dependencies and adding missing source files for Android. Some targets were depending on an internal source_set/static_library when they should have been (or already were) depending on the corresponding component. In these cases, I added some visibility restrictions to those internal targets to try to prevent those types of dependencies from coming back. BUG=359249 Review URL: https://codereview.chromium.org/666813002 Cr-Commit-Position: refs/heads/master@{#301386} --- components/cdm/renderer/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/cdm') diff --git a/components/cdm/renderer/BUILD.gn b/components/cdm/renderer/BUILD.gn index 9652a6c..ef4d03d 100644 --- a/components/cdm/renderer/BUILD.gn +++ b/components/cdm/renderer/BUILD.gn @@ -19,7 +19,7 @@ static_library("renderer") { "//base", "//components/cdm/common", "//content/public/renderer", - "//media/base", + "//media", "//third_party/widevine/cdm:version_h", ] } -- cgit v1.1