0

GN: Check //content/renderer:* by default.

Review URL: https://codereview.chromium.org/1584583002

Cr-Commit-Position: refs/heads/master@{#370267}
This commit is contained in:
jbroman
2016-01-19 17:41:57 -08:00
committed by Commit bot
parent 5d64b5269a
commit 9b51c629bb
2 changed files with 7 additions and 0 deletions
.gn
content/renderer

1
.gn

@ -38,6 +38,7 @@ check_targets = [
#"//content/*", # A whole lot of errors.
"//content/public/common:result_codes",
"//content/public/common:static_switches",
"//content/renderer:*", # Excluding //content/renderer/mus.
"//courgette/*",
"//crypto/*",
"//data/*",

@ -65,6 +65,7 @@ source_set("renderer") {
"//mojo/shell/public/cpp",
"//mojo/shell/public/interfaces",
"//net",
"//sandbox",
"//skia",
"//skia/public",
"//storage/common",
@ -159,6 +160,7 @@ source_set("renderer") {
"//third_party/libjingle:libjingle_webrtc",
"//third_party/libjingle:libpeerconnection",
"//third_party/libjingle:libstunprober",
"//third_party/libvpx_new",
"//third_party/webrtc/base:rtc_base",
"//third_party/webrtc/common_video",
"//third_party/webrtc/modules/audio_device",
@ -235,4 +237,8 @@ source_set("renderer") {
if (use_seccomp_bpf) {
defines += [ "USE_SECCOMP_BPF" ]
}
if (use_ozone) {
deps += [ "//ui/ozone" ]
}
}