Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Side by Side Diff: ios/chrome/common/physical_web/physical_web.gyp

Issue 2023833002: [iOS] Upstream physical web classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698