diff options
author | dnicoara <dnicoara@chromium.org> | 2014-11-18 13:53:39 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-18 21:53:52 +0000 |
commit | 1f7a32ffe98dba070038730ab509aadc9bffd786 (patch) | |
tree | abaa50ea33494acf51c3d24b59736faf4ec20827 /content/test/BUILD.gn | |
parent | 84f8ac12a2b4c94d92d2bdc6acd8e595cc2795b5 (diff) | |
download | chromium_src-1f7a32ffe98dba070038730ab509aadc9bffd786.zip chromium_src-1f7a32ffe98dba070038730ab509aadc9bffd786.tar.gz chromium_src-1f7a32ffe98dba070038730ab509aadc9bffd786.tar.bz2 |
Add Ozone dependency in contents test_support
content/public/test/content_test_suite_base.cc needs to initialize the
Ozone platform.
BUG=none
Review URL: https://codereview.chromium.org/715133003
Cr-Commit-Position: refs/heads/master@{#304674}
Diffstat (limited to 'content/test/BUILD.gn')
-rw-r--r-- | content/test/BUILD.gn | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn index d229e83..80e7558 100644 --- a/content/test/BUILD.gn +++ b/content/test/BUILD.gn @@ -112,6 +112,10 @@ static_library("test_support") { deps += [ "//ui/compositor" ] } + if (use_ozone) { + deps += [ "//ui/ozone" ] + } + if (is_win) { deps += [ "//third_party/iaccessible2" ] } |