| 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("data_source") { | 5 source_set("application_delegate") { |
| 6 sources = [ | 6 sources = [ |
| 7 "physical_web_data_source.cc", | 7 "memory_warning_helper.h", |
| 8 "physical_web_data_source.h", | 8 "memory_warning_helper.mm", |
| 9 "physical_web_data_source_impl.cc", | |
| 10 "physical_web_data_source_impl.h", | |
| 11 "physical_web_listener.h", | |
| 12 ] | 9 ] |
| 13 | |
| 14 deps = [ | 10 deps = [ |
| 15 "//base", | 11 "//base", |
| 12 "//ios/chrome/browser/crash_report", |
| 13 "//ios/chrome/browser/metrics", |
| 16 ] | 14 ] |
| 15 libs = [ "Foundation.framework" ] |
| 17 } | 16 } |
| 18 | 17 |
| 19 source_set("unit_tests") { | 18 source_set("unit_tests") { |
| 20 testonly = true | 19 testonly = true |
| 21 sources = [ | 20 sources = [ |
| 22 "physical_web_data_source_impl_unittest.cc", | 21 "memory_warning_helper_unittest.mm", |
| 23 ] | 22 ] |
| 24 | |
| 25 deps = [ | 23 deps = [ |
| 26 ":data_source", | 24 ":application_delegate", |
| 27 "//base", | 25 "//base", |
| 26 "//ios/chrome/browser/metrics", |
| 28 "//testing/gtest", | 27 "//testing/gtest", |
| 29 ] | 28 ] |
| 30 } | 29 } |
| OLD | NEW |