| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 deps = [ | 60 deps = [ |
| 61 ":browsing_data", | 61 ":browsing_data", |
| 62 ":browsing_data_internal", | 62 ":browsing_data_internal", |
| 63 "//base", | 63 "//base", |
| 64 "//base/test:test_support", | 64 "//base/test:test_support", |
| 65 "//components/browsing_data/core", | 65 "//components/browsing_data/core", |
| 66 "//components/prefs", | 66 "//components/prefs", |
| 67 "//components/prefs:test_support", | 67 "//components/prefs:test_support", |
| 68 "//ios/chrome/browser/browser_state:test_support", | 68 "//ios/chrome/browser/browser_state:test_support", |
| 69 "//ios/web", | 69 "//ios/web", |
| 70 "//ios/web:test_support", | 70 "//ios/web/public/test:test_support", |
| 71 "//ios/web/public/test/fakes:test_support", |
| 71 "//net", | 72 "//net", |
| 72 "//testing/gtest", | 73 "//testing/gtest", |
| 73 "//third_party/ocmock", | 74 "//third_party/ocmock", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| 76 | 77 |
| 77 source_set("browsing_data_internal") { | 78 source_set("browsing_data_internal") { |
| 78 sources = [ | 79 sources = [ |
| 79 "browsing_data_removal_controller.h", | 80 "browsing_data_removal_controller.h", |
| 80 "browsing_data_removal_controller.mm", | 81 "browsing_data_removal_controller.mm", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 92 "//ios/chrome/browser/signin", | 93 "//ios/chrome/browser/signin", |
| 93 "//ios/chrome/browser/snapshots", | 94 "//ios/chrome/browser/snapshots", |
| 94 "//ios/chrome/browser/ui:ui_internal", | 95 "//ios/chrome/browser/ui:ui_internal", |
| 95 "//ios/public/provider/chrome/browser", | 96 "//ios/public/provider/chrome/browser", |
| 96 "//ios/public/provider/chrome/browser/native_app_launcher", | 97 "//ios/public/provider/chrome/browser/native_app_launcher", |
| 97 "//ios/web", | 98 "//ios/web", |
| 98 "//net", | 99 "//net", |
| 99 ] | 100 ] |
| 100 libs = [ "WebKit.framework" ] | 101 libs = [ "WebKit.framework" ] |
| 101 } | 102 } |
| OLD | NEW |