| 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 static_library("core") { | 5 static_library("core") { |
| 6 sources = [ | 6 sources = [ |
| 7 "article_attachments_data.cc", | 7 "article_attachments_data.cc", |
| 8 "article_attachments_data.h", | 8 "article_attachments_data.h", |
| 9 "article_distillation_update.cc", | 9 "article_distillation_update.cc", |
| 10 "article_distillation_update.h", | 10 "article_distillation_update.h", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "url_utils_unittest.cc", | 143 "url_utils_unittest.cc", |
| 144 "viewer_unittest.cc", | 144 "viewer_unittest.cc", |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 deps = [ | 147 deps = [ |
| 148 ":core", | 148 ":core", |
| 149 ":test_support", | 149 ":test_support", |
| 150 ":unit_tests_bundle_data", | 150 ":unit_tests_bundle_data", |
| 151 "//base", | 151 "//base", |
| 152 "//components/leveldb_proto:test_support", | 152 "//components/leveldb_proto:test_support", |
| 153 "//components/pref_registry:test_support", | |
| 154 "//components/resources", | 153 "//components/resources", |
| 155 "//components/strings", | 154 "//components/strings", |
| 156 "//components/sync", | 155 "//components/sync", |
| 156 "//components/sync_preferences:test_support", |
| 157 "//net:test_support", | 157 "//net:test_support", |
| 158 "//testing/gmock", | 158 "//testing/gmock", |
| 159 "//testing/gtest", | 159 "//testing/gtest", |
| 160 "//ui/base", | 160 "//ui/base", |
| 161 "//url", | 161 "//url", |
| 162 ] | 162 ] |
| 163 } | 163 } |
| 164 | 164 |
| 165 if (is_android) { | 165 if (is_android) { |
| 166 import("//build/config/android/rules.gni") | 166 import("//build/config/android/rules.gni") |
| 167 | 167 |
| 168 generate_jni("jni_headers") { | 168 generate_jni("jni_headers") { |
| 169 sources = [ | 169 sources = [ |
| 170 "android/java/src/org/chromium/components/dom_distiller/core/DistilledPage
Prefs.java", | 170 "android/java/src/org/chromium/components/dom_distiller/core/DistilledPage
Prefs.java", |
| 171 "android/java/src/org/chromium/components/dom_distiller/core/DomDistillerS
ervice.java", | 171 "android/java/src/org/chromium/components/dom_distiller/core/DomDistillerS
ervice.java", |
| 172 "android/java/src/org/chromium/components/dom_distiller/core/DomDistillerU
rlUtils.java", | 172 "android/java/src/org/chromium/components/dom_distiller/core/DomDistillerU
rlUtils.java", |
| 173 ] | 173 ] |
| 174 jni_package = "dom_distiller_core" | 174 jni_package = "dom_distiller_core" |
| 175 } | 175 } |
| 176 } | 176 } |
| OLD | NEW |