Chromium Code Reviews| Index: device/bluetooth/public/interfaces/BUILD.gn |
| diff --git a/device/bluetooth/public/interfaces/BUILD.gn b/device/bluetooth/public/interfaces/BUILD.gn |
| index 86146370696f33bb8c40b29fd0dac4a8363c6238..dd4325f319447858acb7303a9f340e624f739a81 100644 |
| --- a/device/bluetooth/public/interfaces/BUILD.gn |
| +++ b/device/bluetooth/public/interfaces/BUILD.gn |
| @@ -4,10 +4,21 @@ |
| import("//mojo/public/tools/bindings/mojom.gni") |
| -mojom("bluetooth_mojom_bluetooth_uuid") { |
| +mojom("interfaces") { |
| sources = [ |
| "bluetooth_uuid.mojom", |
| ] |
| use_new_wrapper_types = false |
| } |
| + |
| +mojom("experimental_interfaces") { |
| + sources = [ |
| + "adapter.mojom", |
| + ] |
| + |
| + visibility = [ |
| + "//device/bluetooth:mojo", |
| + "//chrome/browser/ui/webui/bluetooth_internals:*", |
|
ortuno
2016/09/29 03:01:12
Interesting that gn doesn't complain here. There a
mbrunson
2016/09/29 18:00:09
Yes. It's strange. Maybe visibility doesn't work t
scheib
2016/09/30 04:25:37
Does it throw an error if the lines are removed?
|
| + ] |
| +} |