| 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("browsing_data") { | 5 source_set("browsing_data") { |
| 6 sources = [ | 6 sources = [ |
| 7 "browsing_data_change_listening.h", | 7 "browsing_data_change_listening.h", |
| 8 "browsing_data_counter_wrapper.cc", | 8 "browsing_data_counter_wrapper.cc", |
| 9 "browsing_data_counter_wrapper.h", | 9 "browsing_data_counter_wrapper.h", |
| 10 "browsing_data_remover_helper.cc", | 10 "browsing_data_remover_helper.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "//ios/chrome/browser/sessions", | 37 "//ios/chrome/browser/sessions", |
| 38 "//ios/chrome/browser/signin", | 38 "//ios/chrome/browser/signin", |
| 39 "//ios/chrome/browser/sync", | 39 "//ios/chrome/browser/sync", |
| 40 "//ios/net", | 40 "//ios/net", |
| 41 "//ios/public/provider/chrome/browser", | 41 "//ios/public/provider/chrome/browser", |
| 42 "//ios/web", | 42 "//ios/web", |
| 43 "//net", | 43 "//net", |
| 44 "//url", | 44 "//url", |
| 45 ] | 45 ] |
| 46 allow_circular_includes_from = [ "//ios/chrome/browser/signin" ] | 46 allow_circular_includes_from = [ "//ios/chrome/browser/signin" ] |
| 47 |
| 48 configs += [ "//build/config/compiler:enable_arc" ] |
| 47 } | 49 } |
| 48 | 50 |
| 49 source_set("unit_tests") { | 51 source_set("unit_tests") { |
| 50 testonly = true | 52 testonly = true |
| 51 sources = [ | 53 sources = [ |
| 52 "cache_counter_unittest.cc", | 54 "cache_counter_unittest.cc", |
| 53 ] | 55 ] |
| 54 deps = [ | 56 deps = [ |
| 55 ":browsing_data", | 57 ":browsing_data", |
| 56 "//base", | 58 "//base", |
| 57 "//components/browsing_data/core", | 59 "//components/browsing_data/core", |
| 58 "//components/prefs", | 60 "//components/prefs", |
| 59 "//components/prefs:test_support", | 61 "//components/prefs:test_support", |
| 60 "//ios/web", | 62 "//ios/web", |
| 61 "//ios/web:test_support", | 63 "//ios/web:test_support", |
| 62 "//net", | 64 "//net", |
| 63 "//testing/gtest", | 65 "//testing/gtest", |
| 64 ] | 66 ] |
| 65 } | 67 } |
| OLD | NEW |