OLD | NEW |
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/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "category_info.h", | 96 "category_info.h", |
97 "category_status.h", | 97 "category_status.h", |
98 ] | 98 ] |
99 } | 99 } |
100 } | 100 } |
101 | 101 |
102 source_set("unit_tests") { | 102 source_set("unit_tests") { |
103 testonly = true | 103 testonly = true |
104 sources = [ | 104 sources = [ |
105 "category_factory_unittest.cc", | 105 "category_factory_unittest.cc", |
| 106 "content_suggestions_provider_unittest.cc", |
106 "content_suggestions_service_unittest.cc", | 107 "content_suggestions_service_unittest.cc", |
107 "mock_content_suggestions_provider_observer.cc", | 108 "mock_content_suggestions_provider_observer.cc", |
108 "mock_content_suggestions_provider_observer.h", | 109 "mock_content_suggestions_provider_observer.h", |
109 "ntp_snippet_unittest.cc", | 110 "ntp_snippet_unittest.cc", |
110 "ntp_snippets_database_unittest.cc", | 111 "ntp_snippets_database_unittest.cc", |
111 "ntp_snippets_fetcher_unittest.cc", | 112 "ntp_snippets_fetcher_unittest.cc", |
112 "ntp_snippets_service_unittest.cc", | 113 "ntp_snippets_service_unittest.cc", |
113 "ntp_snippets_status_service_unittest.cc", | 114 "ntp_snippets_status_service_unittest.cc", |
114 "ntp_snippets_test_utils.cc", | 115 "ntp_snippets_test_utils.cc", |
115 "ntp_snippets_test_utils.h", | 116 "ntp_snippets_test_utils.h", |
(...skipping 11 matching lines...) Expand all Loading... |
127 "//components/signin/core/common", | 128 "//components/signin/core/common", |
128 "//components/strings", | 129 "//components/strings", |
129 "//components/sync:test_support_sync_driver", | 130 "//components/sync:test_support_sync_driver", |
130 "//components/variations", | 131 "//components/variations", |
131 "//net:test_support", | 132 "//net:test_support", |
132 "//testing/gtest", | 133 "//testing/gtest", |
133 "//third_party/icu/", | 134 "//third_party/icu/", |
134 "//ui/gfx:test_support", | 135 "//ui/gfx:test_support", |
135 ] | 136 ] |
136 } | 137 } |
OLD | NEW |