Commit 8cac5f9d authored by brettw's avatar brettw Committed by Commit bot

Add more targets to "gn check"

R=dpranke
TBR=armansito@chromium.org (bluetooth)

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

Cr-Commit-Position: refs/heads/master@{#317160}
parent e604e508
......@@ -19,6 +19,12 @@ check_targets = [
# build/config/android/rules.gni "java_cpp_enum" template with
# check_includes = false.
#"//base/*",
"//build/*",
"//cc/*",
"//dbus/*",
"//device/*",
"//ipc/*",
"//sql/*",
"//storage/*",
"//url/*",
]
......@@ -69,6 +69,7 @@ source_set("test_support") {
public_deps = [
":dbus",
"//base",
]
deps = [
"//testing/gmock",
......
......@@ -214,6 +214,10 @@ static_library("mocks") {
deps = [
":bluetooth",
"//net",
"//testing/gmock",
]
public_deps = [
"//base",
]
}
......@@ -9,4 +9,8 @@ source_set("core") {
"device_monitor_win.cc",
"device_monitor_win.h",
]
public_deps = [
"//base",
]
}
......@@ -49,4 +49,7 @@ source_set("hid") {
if (is_linux) {
deps += [ "//device/udev_linux" ]
}
if (is_chromeos) {
deps += [ "//chromeos" ]
}
}
......@@ -29,10 +29,16 @@ static_library("media_transfer_protocol") {
"media_transfer_protocol_manager.h",
]
configs += [ "//build/config/linux:dbus" ]
public_deps = [
":mtp_file_entry_proto",
":mtp_storage_info_proto",
"//base",
]
deps = [
"//dbus",
]
if (is_chromeos) {
deps += [ "//chromeos" ]
}
}
......@@ -43,12 +43,18 @@ static_library("serial") {
public_deps = [
":serial_mojo",
"//base",
]
deps = [
"//third_party/mojo/src/mojo/public/cpp/system",
]
deps = []
if (is_linux) {
deps += [ "//device/udev_linux" ]
}
if (is_chromeos) {
deps += [ "//chromeos" ]
}
}
# GYP version: device/serial/serial.gyp:device_serial_test_util
......
......@@ -43,6 +43,9 @@ source_set("usb") {
if (is_linux) {
deps += [ "//device/udev_linux" ]
}
if (is_chromeos) {
deps += [ "//chromeos" ]
}
}
action("usb_device_ids") {
......
......@@ -33,6 +33,7 @@ component("vibration") {
"//device/vibration/android",
"//device/vibration/android:vibration_jni_headers",
]
allow_circular_includes_from = [ "//device/vibration/android" ]
}
}
......
......@@ -16,6 +16,8 @@ source_set("android") {
defines = [ "DEVICE_VIBRATION_IMPLEMENTATION" ]
deps = [
"//base",
# vibration_jni_registrar.cc includes a header from device/vibration
# that includes a mojo-generated header file. Make sure the header
# is generated before vibration_jni_registrar.cc is compiled.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment