OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/android/rules.gni") |
| 6 |
| 7 # GYP: //components/dom_distiller.gypi:dom_distiller_java |
| 8 android_library("dom_distiller_content_java") { |
| 9 deps = [ |
| 10 "//base:base_java", |
| 11 "//components/dom_distiller/core/android:dom_distiller_core_java", |
| 12 "//content/public/android:content_java", |
| 13 ] |
| 14 java_files = [ "java/src/org/chromium/components/dom_distiller/content/Distill
ablePageUtils.java" ] |
| 15 } |
| 16 |
| 17 generate_jni("jni_headers") { |
| 18 sources = [ |
| 19 "java/src/org/chromium/components/dom_distiller/content/DistillablePageUtils
.java", |
| 20 ] |
| 21 jni_package = "dom_distiller_content" |
| 22 } |
OLD | NEW |