Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: components/BUILD.gn

Issue 2755113002: Create ReadingListSuggestionsProvider (Closed)
Patch Set: Move test to their target Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//rlz/features/features.gni") 9 import("//rlz/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "//components/leveldb_proto:unit_tests", 98 "//components/leveldb_proto:unit_tests",
99 "//components/login:unit_tests", 99 "//components/login:unit_tests",
100 "//components/memory_pressure:unit_tests", 100 "//components/memory_pressure:unit_tests",
101 "//components/metrics:unit_tests", 101 "//components/metrics:unit_tests",
102 "//components/mime_util:unit_tests", 102 "//components/mime_util:unit_tests",
103 "//components/navigation_metrics:unit_tests", 103 "//components/navigation_metrics:unit_tests",
104 "//components/net_log:unit_tests", 104 "//components/net_log:unit_tests",
105 "//components/network_session_configurator:unit_tests", 105 "//components/network_session_configurator:unit_tests",
106 "//components/network_time:unit_tests", 106 "//components/network_time:unit_tests",
107 "//components/ntp_snippets:unit_tests", 107 "//components/ntp_snippets:unit_tests",
108 "//components/ntp_snippets/reading_list:unit_tests",
Marc Treib 2017/03/23 19:01:49 Hm, I was about to suggest moving this dependency
jkrcal 2017/03/24 08:45:19 +1 I do not see the cyclicity. Is it really cyclic
gambard 2017/03/24 09:08:50 There is no cyclic, it is just what we usually do
108 "//components/ntp_tiles:unit_tests", 109 "//components/ntp_tiles:unit_tests",
109 "//components/offline_items_collection/core:unit_tests", 110 "//components/offline_items_collection/core:unit_tests",
110 "//components/offline_pages/core:unit_tests", 111 "//components/offline_pages/core:unit_tests",
111 "//components/offline_pages/core/background:unit_tests", 112 "//components/offline_pages/core/background:unit_tests",
112 "//components/offline_pages/core/downloads:unit_tests", 113 "//components/offline_pages/core/downloads:unit_tests",
113 "//components/offline_pages/core/request_header:unit_tests", 114 "//components/offline_pages/core/request_header:unit_tests",
114 "//components/omnibox/browser:unit_tests", 115 "//components/omnibox/browser:unit_tests",
115 "//components/open_from_clipboard:unit_tests", 116 "//components/open_from_clipboard:unit_tests",
116 "//components/os_crypt:unit_tests", 117 "//components/os_crypt:unit_tests",
117 "//components/password_manager/core/browser:unit_tests", 118 "//components/password_manager/core/browser:unit_tests",
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 "//testing/perf", 509 "//testing/perf",
509 "//url", 510 "//url",
510 ] 511 ]
511 512
512 if (!is_ios) { 513 if (!is_ios) {
513 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ] 514 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ]
514 deps += [ "//components/discardable_memory/common" ] 515 deps += [ "//components/discardable_memory/common" ]
515 } 516 }
516 } 517 }
517 } 518 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698