| 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 "article_attachments_data.cc", | 8 "article_attachments_data.cc", |
| 9 "article_attachments_data.h", | 9 "article_attachments_data.h", |
| 10 "article_distillation_update.cc", | 10 "article_distillation_update.cc", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 if (is_android) { | 81 if (is_android) { |
| 82 sources += [ | 82 sources += [ |
| 83 "dom_distiller_service_android.cc", | 83 "dom_distiller_service_android.cc", |
| 84 "dom_distiller_service_android.h", | 84 "dom_distiller_service_android.h", |
| 85 ] | 85 ] |
| 86 deps += [ ":jni_headers" ] | 86 deps += [ ":jni_headers" ] |
| 87 } | 87 } |
| 88 } | 88 } |
| 89 | 89 |
| 90 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support | 90 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support |
| 91 source_set("test_support") { | 91 static_library("test_support") { |
| 92 testonly = true | 92 testonly = true |
| 93 sources = [ | 93 sources = [ |
| 94 "dom_distiller_test_util.cc", | 94 "dom_distiller_test_util.cc", |
| 95 "dom_distiller_test_util.h", | 95 "dom_distiller_test_util.h", |
| 96 "fake_distiller.cc", | 96 "fake_distiller.cc", |
| 97 "fake_distiller.h", | 97 "fake_distiller.h", |
| 98 "fake_distiller_page.cc", | 98 "fake_distiller_page.cc", |
| 99 "fake_distiller_page.h", | 99 "fake_distiller_page.h", |
| 100 "test_request_view_handle.h", | 100 "test_request_view_handle.h", |
| 101 ] | 101 ] |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 166 |
| 167 generate_jni("jni_headers") { | 167 generate_jni("jni_headers") { |
| 168 sources = [ | 168 sources = [ |
| 169 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 169 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
| 170 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 170 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
| 171 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 171 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
| 172 ] | 172 ] |
| 173 jni_package = "dom_distiller_core" | 173 jni_package = "dom_distiller_core" |
| 174 } | 174 } |
| 175 } | 175 } |
| OLD | NEW |