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