OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("physical_web") { | 5 source_set("physical_web") { |
6 sources = [ | 6 sources = [ |
| 7 "physical_web_data_source_ios.h", |
| 8 "physical_web_data_source_ios.mm", |
7 "physical_web_device.h", | 9 "physical_web_device.h", |
8 "physical_web_device.mm", | 10 "physical_web_device.mm", |
9 "physical_web_request.h", | 11 "physical_web_request.h", |
10 "physical_web_request.mm", | 12 "physical_web_request.mm", |
11 "physical_web_scanner.h", | 13 "physical_web_scanner.h", |
12 "physical_web_scanner.mm", | 14 "physical_web_scanner.mm", |
13 "physical_web_types.h", | 15 "physical_web_types.h", |
14 "physical_web_types.mm", | 16 "physical_web_types.mm", |
15 ] | 17 ] |
16 | 18 |
17 deps = [ | 19 deps = [ |
18 "//base", | 20 "//base", |
| 21 "//components/physical_web_data_source", |
19 "//components/version_info", | 22 "//components/version_info", |
20 "//device/bluetooth/uribeacon", | 23 "//device/bluetooth/uribeacon", |
21 "//google_apis", | 24 "//google_apis", |
22 "//ios/web:user_agent", | 25 "//ios/web:user_agent", |
23 ] | 26 ] |
24 | 27 |
25 libs = [ | 28 libs = [ |
26 "CoreBluetooth.framework", | 29 "CoreBluetooth.framework", |
27 "Foundation.framework", | 30 "Foundation.framework", |
28 ] | 31 ] |
29 } | 32 } |
OLD | NEW |