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 # GYP version: components/dom_distiller.gypi:dom_distiller_core | 5 # GYP version: components/dom_distiller.gypi:dom_distiller_core |
6 source_set("core") { | 6 source_set("core") { |
7 sources = [ | 7 sources = [ |
8 "../android/component_jni_registrar.cc", | 8 "../android/component_jni_registrar.cc", |
9 "../android/component_jni_registrar.h", | 9 "../android/component_jni_registrar.h", |
10 "article_attachments_data.cc", | 10 "article_attachments_data.cc", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 "//testing/gmock", | 111 "//testing/gmock", |
112 "//testing/gtest", | 112 "//testing/gtest", |
113 "//url", | 113 "//url", |
114 ] | 114 ] |
115 } | 115 } |
116 | 116 |
117 source_set("unit_tests") { | 117 source_set("unit_tests") { |
118 testonly = true | 118 testonly = true |
119 sources = [ | 119 sources = [ |
120 "article_entry_unittest.cc", | 120 "article_entry_unittest.cc", |
| 121 "distillable_page_detector_unittest.cc", |
121 "distilled_content_store_unittest.cc", | 122 "distilled_content_store_unittest.cc", |
122 "distilled_page_prefs_unittests.cc", | 123 "distilled_page_prefs_unittests.cc", |
123 "distiller_unittest.cc", | 124 "distiller_unittest.cc", |
124 "distiller_url_fetcher_unittest.cc", | 125 "distiller_url_fetcher_unittest.cc", |
125 "dom_distiller_model_unittest.cc", | 126 "dom_distiller_model_unittest.cc", |
126 "dom_distiller_request_view_base_unittest.cc", | 127 "dom_distiller_request_view_base_unittest.cc", |
127 "dom_distiller_service_unittest.cc", | 128 "dom_distiller_service_unittest.cc", |
128 "dom_distiller_store_unittest.cc", | 129 "dom_distiller_store_unittest.cc", |
129 "page_features_unittest.cc", | 130 "page_features_unittest.cc", |
130 "task_tracker_unittest.cc", | 131 "task_tracker_unittest.cc", |
(...skipping 22 matching lines...) Expand all Loading... |
153 | 154 |
154 generate_jni("jni_headers") { | 155 generate_jni("jni_headers") { |
155 sources = [ | 156 sources = [ |
156 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 157 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
157 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 158 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
158 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 159 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
159 ] | 160 ] |
160 jni_package = "dom_distiller_core" | 161 jni_package = "dom_distiller_core" |
161 } | 162 } |
162 } | 163 } |
OLD | NEW |