diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-24 21:19:28 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-24 21:19:28 +0000 |
commit | d7e69fa79eb5d08e7e0f978c66c92a69f741f215 (patch) | |
tree | c0aa36238a074fd8027601c78ed39b169ffdb732 /content/test/BUILD.gn | |
parent | 07148466edf1b86bcdfb5bebd3091342c50d9b0e (diff) | |
download | chromium_src-d7e69fa79eb5d08e7e0f978c66c92a69f741f215.zip chromium_src-d7e69fa79eb5d08e7e0f978c66c92a69f741f215.tar.gz chromium_src-d7e69fa79eb5d08e7e0f978c66c92a69f741f215.tar.bz2 |
Fix GN linking issues.
This gets rid of most of the non-webrtc/jingle linker errors for webkit_tests.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/419613002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285375 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/BUILD.gn')
-rw-r--r-- | content/test/BUILD.gn | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn index 9578b40..420d9ea 100644 --- a/content/test/BUILD.gn +++ b/content/test/BUILD.gn @@ -15,6 +15,9 @@ content_tests_gypi_values = exec_script( # GYP version //content/content_tests.gypi:test_support_content static_library("test_support") { deps = [ + "//content/public/app", + "//content/public/browser", + "//content/public/common", "//net:test_support", "//skia", "//testing/gmock", @@ -30,23 +33,19 @@ static_library("test_support") { "//ui/resources", "//url", "//webkit/common", - "//content/browser/speech/proto", - "//content/browser", - "//content/common", - "//content/app", ] if (!is_ios) { - sources = rebase_path(content_tests_gypi_values.layouttest_support_content_sources, + sources = rebase_path(content_tests_gypi_values.test_support_content_sources, ".", "//content") deps += [ + "//content/browser/speech/proto", "//content/child", - "//content/common", "//content/gpu", "//content/ppapi_plugin", - "//content/renderer", - "//content/utility", + "//content/public/renderer", + "//content/public/utility", "//content/worker", "//cc", "//cc:test_support", |