| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("physical_web") { |
| 6 sources = [ |
| 7 "create_physical_web_data_source.h", |
| 8 "create_physical_web_data_source.mm", |
| 9 "physical_web_constants.h", |
| 10 "start_physical_web_discovery.h", |
| 11 "start_physical_web_discovery.mm", |
| 12 ] |
| 13 deps = [ |
| 14 "//base", |
| 15 "//components/physical_web/data_source", |
| 16 "//components/prefs", |
| 17 "//ios/chrome/browser:browser_no_public_deps", |
| 18 "//ios/chrome/browser/geolocation", |
| 19 "//ios/chrome/common/physical_web", |
| 20 "//url", |
| 21 ] |
| 22 libs = [ "CoreLocation.framework" ] |
| 23 } |
| OLD | NEW |