| 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 27 matching lines...) Expand all Loading... |
| 38 "//components/reading_list/core", | 38 "//components/reading_list/core", |
| 39 "//components/reading_list/ios", | 39 "//components/reading_list/ios", |
| 40 "//components/sync", | 40 "//components/sync", |
| 41 "//ios/chrome/browser", | 41 "//ios/chrome/browser", |
| 42 "//ios/chrome/browser/bookmarks", | 42 "//ios/chrome/browser/bookmarks", |
| 43 "//ios/chrome/browser/browser_state", | 43 "//ios/chrome/browser/browser_state", |
| 44 "//ios/chrome/browser/favicon", | 44 "//ios/chrome/browser/favicon", |
| 45 "//ios/chrome/browser/history", | 45 "//ios/chrome/browser/history", |
| 46 "//ios/chrome/common", | 46 "//ios/chrome/common", |
| 47 "//ios/web", | 47 "//ios/web", |
| 48 "//ios/web:reload_type", |
| 48 "//net", | 49 "//net", |
| 49 "//url", | 50 "//url", |
| 50 ] | 51 ] |
| 51 public_deps = [ | 52 public_deps = [ |
| 52 "//ios/chrome/browser/dom_distiller", | 53 "//ios/chrome/browser/dom_distiller", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 | 56 |
| 56 source_set("unit_tests") { | 57 source_set("unit_tests") { |
| 57 configs += [ "//build/config/compiler:enable_arc" ] | 58 configs += [ "//build/config/compiler:enable_arc" ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 72 "//ios/chrome/browser/browser_state:test_support", | 73 "//ios/chrome/browser/browser_state:test_support", |
| 73 "//ios/chrome/browser/dom_distiller", | 74 "//ios/chrome/browser/dom_distiller", |
| 74 "//ios/testing:ios_test_support", | 75 "//ios/testing:ios_test_support", |
| 75 "//ios/web", | 76 "//ios/web", |
| 76 "//ios/web:test_support", | 77 "//ios/web:test_support", |
| 77 "//net", | 78 "//net", |
| 78 "//testing/gtest", | 79 "//testing/gtest", |
| 79 "//url", | 80 "//url", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| OLD | NEW |