| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "viewer.cc", | 56 "viewer.cc", |
| 57 "viewer.h", | 57 "viewer.h", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 public_deps = [ | 60 public_deps = [ |
| 61 "//components/dom_distiller/core/proto", | 61 "//components/dom_distiller/core/proto", |
| 62 "//third_party/dom_distiller_js:proto", | 62 "//third_party/dom_distiller_js:proto", |
| 63 ] | 63 ] |
| 64 deps = [ | 64 deps = [ |
| 65 "//base", | 65 "//base", |
| 66 "//components/data_use_measurement/core", |
| 66 "//components/leveldb_proto", | 67 "//components/leveldb_proto", |
| 67 "//components/pref_registry", | 68 "//components/pref_registry", |
| 68 "//components/prefs", | 69 "//components/prefs", |
| 69 "//components/resources", | 70 "//components/resources", |
| 70 "//components/strings", | 71 "//components/strings", |
| 71 "//components/sync", | 72 "//components/sync", |
| 72 "//components/variations", | 73 "//components/variations", |
| 73 "//net", | 74 "//net", |
| 74 "//skia", | 75 "//skia", |
| 75 "//third_party/re2", | 76 "//third_party/re2", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 167 |
| 167 generate_jni("jni_headers") { | 168 generate_jni("jni_headers") { |
| 168 sources = [ | 169 sources = [ |
| 169 "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", |
| 170 "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", |
| 171 "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", |
| 172 ] | 173 ] |
| 173 jni_package = "dom_distiller_core" | 174 jni_package = "dom_distiller_core" |
| 174 } | 175 } |
| 175 } | 176 } |
| OLD | NEW |