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 'physical_web_device.h', |
| 13 'physical_web_device.mm', |
| 14 'physical_web_request.h', |
| 15 'physical_web_request.mm', |
| 16 'physical_web_scanner.h', |
| 17 'physical_web_scanner.mm', |
| 18 'physical_web_types.h', |
| 19 'physical_web_types.mm', |
| 20 ], |
| 21 'dependencies': [ |
| 22 '../../../../base/base.gyp:base', |
| 23 '../../../../components/components.gyp:version_info', |
| 24 '../../../../device/bluetooth/bluetooth.gyp:uribeacon', |
| 25 '../../../../google_apis/google_apis.gyp:google_apis', |
| 26 '../../../../ios/web/ios_web.gyp:user_agent', |
| 27 ], |
| 28 'link_settings': { |
| 29 'libraries': [ |
| 30 '$(SDKROOT)/System/Library/Frameworks/CoreBluetooth.framework', |
| 31 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 32 ], |
| 33 }, |
| 34 } |
| 35 ] |
| 36 } |
OLD | NEW |