| 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 22 matching lines...) Expand all Loading... |
| 33 "//components/keyed_service/ios", | 33 "//components/keyed_service/ios", |
| 34 "//components/pref_registry", | 34 "//components/pref_registry", |
| 35 "//components/prefs", | 35 "//components/prefs", |
| 36 "//components/reading_list/core", | 36 "//components/reading_list/core", |
| 37 "//components/reading_list/ios", | 37 "//components/reading_list/ios", |
| 38 "//ios/chrome/browser", | 38 "//ios/chrome/browser", |
| 39 "//ios/chrome/browser/bookmarks", | 39 "//ios/chrome/browser/bookmarks", |
| 40 "//ios/chrome/browser/browser_state", | 40 "//ios/chrome/browser/browser_state", |
| 41 "//ios/chrome/browser/favicon", | 41 "//ios/chrome/browser/favicon", |
| 42 "//ios/chrome/browser/history", | 42 "//ios/chrome/browser/history", |
| 43 "//ios/public/provider/web", | |
| 44 "//ios/web", | 43 "//ios/web", |
| 45 "//net", | 44 "//net", |
| 46 "//url", | 45 "//url", |
| 47 ] | 46 ] |
| 48 public_deps = [ | 47 public_deps = [ |
| 49 "//ios/chrome/browser/dom_distiller", | 48 "//ios/chrome/browser/dom_distiller", |
| 50 ] | 49 ] |
| 51 } | 50 } |
| 52 | 51 |
| 53 source_set("unit_tests") { | 52 source_set("unit_tests") { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 69 "//ios/chrome/browser/browser_state:test_support", | 68 "//ios/chrome/browser/browser_state:test_support", |
| 70 "//ios/chrome/browser/dom_distiller", | 69 "//ios/chrome/browser/dom_distiller", |
| 71 "//ios/testing:ios_test_support", | 70 "//ios/testing:ios_test_support", |
| 72 "//ios/web", | 71 "//ios/web", |
| 73 "//ios/web:test_support", | 72 "//ios/web:test_support", |
| 74 "//net", | 73 "//net", |
| 75 "//testing/gtest", | 74 "//testing/gtest", |
| 76 "//url", | 75 "//url", |
| 77 ] | 76 ] |
| 78 } | 77 } |
| OLD | NEW |