OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
6 'targets':[ | 6 'targets':[ |
7 { | 7 { |
8 # GN version: //ios/chrome/common/physical_web | 8 # GN version: //ios/chrome/common/physical_web |
9 'target_name': 'physical_web', | 9 'target_name': 'physical_web', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'sources': [ | 11 'sources': [ |
| 12 'physical_web_data_source_ios.h', |
| 13 'physical_web_data_source_ios.mm', |
12 'physical_web_device.h', | 14 'physical_web_device.h', |
13 'physical_web_device.mm', | 15 'physical_web_device.mm', |
14 'physical_web_request.h', | 16 'physical_web_request.h', |
15 'physical_web_request.mm', | 17 'physical_web_request.mm', |
16 'physical_web_scanner.h', | 18 'physical_web_scanner.h', |
17 'physical_web_scanner.mm', | 19 'physical_web_scanner.mm', |
18 'physical_web_types.h', | 20 'physical_web_types.h', |
19 'physical_web_types.mm', | 21 'physical_web_types.mm', |
20 ], | 22 ], |
21 'dependencies': [ | 23 'dependencies': [ |
22 '../../../../base/base.gyp:base', | 24 '../../../../base/base.gyp:base', |
| 25 '../../../../components/components.gyp:physical_web_data_source', |
23 '../../../../components/components.gyp:version_info', | 26 '../../../../components/components.gyp:version_info', |
24 '../../../../device/bluetooth/bluetooth.gyp:uribeacon', | 27 '../../../../device/bluetooth/bluetooth.gyp:uribeacon', |
25 '../../../../google_apis/google_apis.gyp:google_apis', | 28 '../../../../google_apis/google_apis.gyp:google_apis', |
26 '../../../../ios/web/ios_web.gyp:user_agent', | 29 '../../../../ios/web/ios_web.gyp:user_agent', |
27 ], | 30 ], |
28 'link_settings': { | 31 'link_settings': { |
29 'libraries': [ | 32 'libraries': [ |
30 '$(SDKROOT)/System/Library/Frameworks/CoreBluetooth.framework', | 33 '$(SDKROOT)/System/Library/Frameworks/CoreBluetooth.framework', |
31 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 34 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
32 ], | 35 ], |
33 }, | 36 }, |
34 } | 37 } |
35 ] | 38 ] |
36 } | 39 } |
OLD | NEW |