| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 source_set("physical_web") { | 5 source_set("physical_web") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 6 sources = [ | 7 sources = [ |
| 7 "create_physical_web_data_source.h", | 8 "create_physical_web_data_source.h", |
| 8 "create_physical_web_data_source.mm", | 9 "create_physical_web_data_source.mm", |
| 9 "ios_chrome_physical_web_data_source.h", | 10 "ios_chrome_physical_web_data_source.h", |
| 10 "ios_chrome_physical_web_data_source.mm", | 11 "ios_chrome_physical_web_data_source.mm", |
| 11 "physical_web_constants.h", | 12 "physical_web_constants.h", |
| 12 "physical_web_initial_state_recorder.h", | 13 "physical_web_initial_state_recorder.h", |
| 13 "physical_web_initial_state_recorder.mm", | 14 "physical_web_initial_state_recorder.mm", |
| 14 "physical_web_prefs_registration.cc", | 15 "physical_web_prefs_registration.cc", |
| 15 "physical_web_prefs_registration.h", | 16 "physical_web_prefs_registration.h", |
| 16 "start_physical_web_discovery.h", | 17 "start_physical_web_discovery.h", |
| 17 "start_physical_web_discovery.mm", | 18 "start_physical_web_discovery.mm", |
| 18 ] | 19 ] |
| 19 deps = [ | 20 deps = [ |
| 20 "//base", | 21 "//base", |
| 21 "//components/physical_web/data_source", | 22 "//components/physical_web/data_source", |
| 22 "//components/pref_registry", | 23 "//components/pref_registry", |
| 23 "//components/prefs", | 24 "//components/prefs", |
| 24 "//components/search_engines", | 25 "//components/search_engines", |
| 25 "//ios/chrome/browser", | 26 "//ios/chrome/browser", |
| 26 "//ios/chrome/browser/browser_state", | 27 "//ios/chrome/browser/browser_state", |
| 27 "//ios/chrome/browser/geolocation", | 28 "//ios/chrome/browser/geolocation", |
| 28 "//ios/chrome/browser/search_engines", | 29 "//ios/chrome/browser/search_engines", |
| 29 "//ios/chrome/common/physical_web", | 30 "//ios/chrome/common/physical_web", |
| 30 "//url", | 31 "//url", |
| 31 ] | 32 ] |
| 32 libs = [ "CoreLocation.framework" ] | 33 libs = [ "CoreLocation.framework" ] |
| 33 } | 34 } |
| OLD | NEW |