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