| 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("reading_list") { | 5 source_set("reading_list") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "favicon_web_state_dispatcher_impl.h", | 8 "favicon_web_state_dispatcher_impl.h", |
| 9 "favicon_web_state_dispatcher_impl.mm", | 9 "favicon_web_state_dispatcher_impl.mm", |
| 10 "offline_url_utils.cc", | 10 "offline_url_utils.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "reading_list_web_state_observer.h", | 22 "reading_list_web_state_observer.h", |
| 23 "reading_list_web_state_observer.mm", | 23 "reading_list_web_state_observer.mm", |
| 24 "url_downloader.cc", | 24 "url_downloader.cc", |
| 25 "url_downloader.h", | 25 "url_downloader.h", |
| 26 ] | 26 ] |
| 27 deps = [ | 27 deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//components/dom_distiller/ios", | 29 "//components/dom_distiller/ios", |
| 30 "//components/favicon/core", | 30 "//components/favicon/core", |
| 31 "//components/favicon/ios", | 31 "//components/favicon/ios", |
| 32 "//components/google/core/browser", |
| 32 "//components/keyed_service/core", | 33 "//components/keyed_service/core", |
| 33 "//components/keyed_service/ios", | 34 "//components/keyed_service/ios", |
| 34 "//components/pref_registry", | 35 "//components/pref_registry", |
| 35 "//components/prefs", | 36 "//components/prefs", |
| 36 "//components/reading_list/core", | 37 "//components/reading_list/core", |
| 37 "//components/reading_list/ios", | 38 "//components/reading_list/ios", |
| 38 "//ios/chrome/browser", | 39 "//ios/chrome/browser", |
| 39 "//ios/chrome/browser/bookmarks", | 40 "//ios/chrome/browser/bookmarks", |
| 40 "//ios/chrome/browser/browser_state", | 41 "//ios/chrome/browser/browser_state", |
| 41 "//ios/chrome/browser/favicon", | 42 "//ios/chrome/browser/favicon", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 68 "//ios/chrome/browser/browser_state:test_support", | 69 "//ios/chrome/browser/browser_state:test_support", |
| 69 "//ios/chrome/browser/dom_distiller", | 70 "//ios/chrome/browser/dom_distiller", |
| 70 "//ios/testing:ios_test_support", | 71 "//ios/testing:ios_test_support", |
| 71 "//ios/web", | 72 "//ios/web", |
| 72 "//ios/web:test_support", | 73 "//ios/web:test_support", |
| 73 "//net", | 74 "//net", |
| 74 "//testing/gtest", | 75 "//testing/gtest", |
| 75 "//url", | 76 "//url", |
| 76 ] | 77 ] |
| 77 } | 78 } |
| OLD | NEW |