diff options
author | Brett Wilson <brettw@chromium.org> | 2014-09-11 09:58:56 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-09-11 17:13:07 +0000 |
commit | 8f132304db80d9de8d0df51a568dda65ddec93ef (patch) | |
tree | 496ef8910ec3b471e05d2d2395a501533e2b7507 /content/test/BUILD.gn | |
parent | 36e91cd9ac1516a202ab09cc5ea98781c84db0d8 (diff) | |
download | chromium_src-8f132304db80d9de8d0df51a568dda65ddec93ef.zip chromium_src-8f132304db80d9de8d0df51a568dda65ddec93ef.tar.gz chromium_src-8f132304db80d9de8d0df51a568dda65ddec93ef.tar.bz2 |
Make chrome GN build work in component mode.
This also fixes a resources regression (added extensions resources) that caused chrome not to run.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/554393009
Cr-Commit-Position: refs/heads/master@{#294406}
Diffstat (limited to 'content/test/BUILD.gn')
-rw-r--r-- | content/test/BUILD.gn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn index 18c555b..4326551 100644 --- a/content/test/BUILD.gn +++ b/content/test/BUILD.gn @@ -18,8 +18,8 @@ static_library("test_support") { deps = [ "//cc/blink", "//content/public/app:both", - "//content/public/browser", - "//content/public/common", + "//content/public/browser:browser_sources", + "//content/public/common:common_sources", "//net:test_support", "//skia", "//storage/common", @@ -44,10 +44,10 @@ static_library("test_support") { deps += [ "//content/browser/speech/proto", - "//content/child", + "//content/public/child:child_sources", "//content/gpu", - "//content/public/renderer", - "//content/public/utility", + "//content/public/renderer:renderer_sources", + "//content/public/utility:utility_sources", "//cc", "//cc:test_support", "//media", |