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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 "//ui/gfx", | 126 "//ui/gfx", |
127 ] | 127 ] |
128 } | 128 } |
129 | 129 |
130 if (is_android) { | 130 if (is_android) { |
131 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 131 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
132 sources = [ | 132 sources = [ |
133 "category.h", | 133 "category.h", |
134 "category_info.h", | 134 "category_info.h", |
135 "category_status.h", | 135 "category_status.h", |
| 136 "content_suggestions_service.cc", |
136 ] | 137 ] |
137 } | 138 } |
138 } | 139 } |
139 | 140 |
140 source_set("unit_tests") { | 141 source_set("unit_tests") { |
141 testonly = true | 142 testonly = true |
142 sources = [ | 143 sources = [ |
143 "bookmarks/bookmark_last_visit_utils_unittest.cc", | 144 "bookmarks/bookmark_last_visit_utils_unittest.cc", |
144 "bookmarks/bookmark_suggestions_provider_unittest.cc", | 145 "bookmarks/bookmark_suggestions_provider_unittest.cc", |
145 "category_rankers/click_based_category_ranker_unittest.cc", | 146 "category_rankers/click_based_category_ranker_unittest.cc", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 | 218 |
218 deps = [ | 219 deps = [ |
219 ":ntp_snippets", | 220 ":ntp_snippets", |
220 "//base", | 221 "//base", |
221 "//components/offline_pages/core", | 222 "//components/offline_pages/core", |
222 "//components/offline_pages/core:test_support", | 223 "//components/offline_pages/core:test_support", |
223 "//testing/gmock", | 224 "//testing/gmock", |
224 "//testing/gtest", | 225 "//testing/gtest", |
225 ] | 226 ] |
226 } | 227 } |
OLD | NEW |