diff options
author | Brett Wilson <brettw@chromium.org> | 2014-09-05 16:29:55 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-09-05 23:32:30 +0000 |
commit | b41a8d6e789ac5df9a6d314cd0ad59f584f53dea (patch) | |
tree | 704c4f7928c596805437ec6be0656cbd24b80ff8 /content/BUILD.gn | |
parent | 12a31fdc4f1d7abebb7845628dcd86a79d01e9b2 (diff) | |
download | chromium_src-b41a8d6e789ac5df9a6d314cd0ad59f584f53dea.zip chromium_src-b41a8d6e789ac5df9a6d314cd0ad59f584f53dea.tar.gz chromium_src-b41a8d6e789ac5df9a6d314cd0ad59f584f53dea.tar.bz2 |
Make ui gn check pass. Misc GN build improvements.
Content/public/app was messed up and didn't link everything properly, so this separates it out into browser and child like content/app is.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/545313002
Cr-Commit-Position: refs/heads/master@{#293592}
Diffstat (limited to 'content/BUILD.gn')
-rw-r--r-- | content/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/BUILD.gn b/content/BUILD.gn index b4eeb26..c59434b 100644 --- a/content/BUILD.gn +++ b/content/BUILD.gn @@ -13,7 +13,6 @@ content_shared_components = [ "//content/gpu", "//content/plugin", "//content/ppapi_plugin", - "//content/public/app", "//content/public/browser:sources", "//content/public/child", "//content/public/common", @@ -27,6 +26,7 @@ if (is_component_build) { shared_library("content") { deps = content_shared_components + [ "//content/app", + "//content/public/app", ] forward_dependent_configs_from = deps } |