diff options
author | brettw <brettw@chromium.org> | 2016-03-24 17:41:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-25 00:42:55 +0000 |
commit | f510be61306f5e4986eceb1f8686bfcc934cd400 (patch) | |
tree | 934d72ba4133b7c5d8dff2b0cf8f6400750851df /media | |
parent | bafc20f876b6a70a5bee326eb388f6a057143112 (diff) | |
download | chromium_src-f510be61306f5e4986eceb1f8686bfcc934cd400.zip chromium_src-f510be61306f5e4986eceb1f8686bfcc934cd400.tar.gz chromium_src-f510be61306f5e4986eceb1f8686bfcc934cd400.tar.bz2 |
Content "gn check" work.
Make content/gpu and content/plugin pass GN check.
Makes most of content/shell and content/test pass check. These are not all enabled yet pending a few remaining issues that are more difficult to solve.
The private content targets now allow content/test to include headers from them for non-component builds. Checking is disabled for content/test in component builds as described in the comment at the top of //content/BUILD.gn
Renames the ui/events/ipc according to GN style
BUG=
CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel
TBR=jschuh (IPC build tweak)
Review URL: https://codereview.chromium.org/1828483002
Cr-Commit-Position: refs/heads/master@{#383208}
Diffstat (limited to 'media')
-rw-r--r-- | media/BUILD.gn | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/media/BUILD.gn b/media/BUILD.gn index 84e0b03..efe4d1a 100644 --- a/media/BUILD.gn +++ b/media/BUILD.gn @@ -722,9 +722,11 @@ source_set("test_support") { "video/mock_video_decode_accelerator.cc", "video/mock_video_decode_accelerator.h", ] - deps = [ + public_deps = [ ":media", ":shared_memory_support", + ] + deps = [ "//base", "//skia", "//testing/gmock", |