| 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/favicon/ios", | 33 "//components/favicon/ios", |
| 34 "//components/google/core/browser", | 34 "//components/google/core/browser", |
| 35 "//components/keyed_service/core", | 35 "//components/keyed_service/core", |
| 36 "//components/keyed_service/ios", | 36 "//components/keyed_service/ios", |
| 37 "//components/pref_registry", | 37 "//components/pref_registry", |
| 38 "//components/prefs", | 38 "//components/prefs", |
| 39 "//components/reading_list/core", | 39 "//components/reading_list/core", |
| 40 "//components/reading_list/ios", | 40 "//components/reading_list/ios", |
| 41 "//components/sync", | 41 "//components/sync", |
| 42 "//ios/chrome/browser", | 42 "//ios/chrome/browser", |
| 43 "//ios/chrome/browser/bookmarks", | |
| 44 "//ios/chrome/browser/browser_state", | 43 "//ios/chrome/browser/browser_state", |
| 45 "//ios/chrome/browser/favicon", | 44 "//ios/chrome/browser/favicon", |
| 46 "//ios/chrome/browser/history", | 45 "//ios/chrome/browser/history", |
| 47 "//ios/chrome/common", | 46 "//ios/chrome/common", |
| 48 "//ios/web", | 47 "//ios/web", |
| 49 "//ios/web:reload_type", | 48 "//ios/web:reload_type", |
| 50 "//net", | 49 "//net", |
| 51 "//url", | 50 "//url", |
| 52 ] | 51 ] |
| 53 public_deps = [ | 52 public_deps = [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "//ios/testing:ios_test_support", | 96 "//ios/testing:ios_test_support", |
| 98 "//ios/web", | 97 "//ios/web", |
| 99 "//ios/web:reload_type", | 98 "//ios/web:reload_type", |
| 100 "//ios/web/public/test", | 99 "//ios/web/public/test", |
| 101 "//ios/web/public/test/fakes", | 100 "//ios/web/public/test/fakes", |
| 102 "//net", | 101 "//net", |
| 103 "//testing/gtest", | 102 "//testing/gtest", |
| 104 "//url", | 103 "//url", |
| 105 ] | 104 ] |
| 106 } | 105 } |
| OLD | NEW |