summaryrefslogtreecommitdiffstats
path: root/components/pairing
diff options
context:
space:
mode:
authormukai <mukai@chromium.org>2014-10-09 19:05:48 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-10 02:06:21 +0000
commitf519af97a9fd1bc46f9d4151c9dd94ebe57b289d (patch)
treef3058b8fd3e6b3ebc7265f613a05a2ae78af4f76 /components/pairing
parent0b40913d6e0cff095e373ea216680870d1215336 (diff)
downloadchromium_src-f519af97a9fd1bc46f9d4151c9dd94ebe57b289d.zip
chromium_src-f519af97a9fd1bc46f9d4151c9dd94ebe57b289d.tar.gz
chromium_src-f519af97a9fd1bc46f9d4151c9dd94ebe57b289d.tar.bz2
Fixes components/pairing/BUILD.gn
BUG=None R=cmasone@chromium.org, achuith@chromium.org TEST=manually Review URL: https://codereview.chromium.org/639253002 Cr-Commit-Position: refs/heads/master@{#299041}
Diffstat (limited to 'components/pairing')
-rw-r--r--components/pairing/BUILD.gn39
1 files changed, 21 insertions, 18 deletions
diff --git a/components/pairing/BUILD.gn b/components/pairing/BUILD.gn
index d67e434..12096c8 100644
--- a/components/pairing/BUILD.gn
+++ b/components/pairing/BUILD.gn
@@ -6,30 +6,33 @@ import("//third_party/protobuf/proto_library.gni")
source_set("pairing") {
sources = [
- "pairing/bluetooth_controller_pairing_controller.cc",
- "pairing/bluetooth_controller_pairing_controller.h",
- "pairing/bluetooth_host_pairing_controller.cc",
- "pairing/bluetooth_host_pairing_controller.h",
- "pairing/bluetooth_pairing_constants.cc",
- "pairing/bluetooth_pairing_constants.h",
- "pairing/controller_pairing_controller.cc",
- "pairing/controller_pairing_controller.h",
- "pairing/fake_controller_pairing_controller.cc",
- "pairing/fake_controller_pairing_controller.h",
- "pairing/fake_host_pairing_controller.cc",
- "pairing/fake_host_pairing_controller.h",
- "pairing/host_pairing_controller.cc",
- "pairing/host_pairing_controller.h",
- "pairing/message_buffer.cc",
- "pairing/message_buffer.h",
- "pairing/proto_decoder.cc",
- "pairing/proto_decoder.h",
+ "bluetooth_controller_pairing_controller.cc",
+ "bluetooth_controller_pairing_controller.h",
+ "bluetooth_host_pairing_controller.cc",
+ "bluetooth_host_pairing_controller.h",
+ "bluetooth_pairing_constants.cc",
+ "bluetooth_pairing_constants.h",
+ "controller_pairing_controller.cc",
+ "controller_pairing_controller.h",
+ "fake_controller_pairing_controller.cc",
+ "fake_controller_pairing_controller.h",
+ "fake_host_pairing_controller.cc",
+ "fake_host_pairing_controller.h",
+ "host_pairing_controller.cc",
+ "host_pairing_controller.h",
+ "message_buffer.cc",
+ "message_buffer.h",
+ "proto_decoder.cc",
+ "proto_decoder.h",
+ "shark_connection_listener.cc",
+ "shark_connection_listener.h",
]
deps = [
"//base",
"//device/bluetooth",
"//net",
+ ":proto",
]
}