| 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 import("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 | 6 |
| 7 | |
| 8 # GYP: //components/dom_distiller.gypi:dom_distiller_core_java | 7 # GYP: //components/dom_distiller.gypi:dom_distiller_core_java |
| 9 android_library("dom_distiller_core_java") { | 8 android_library("dom_distiller_core_java") { |
| 10 deps = [ | 9 deps = [ |
| 11 "//base:base_java", | 10 "//base:base_java", |
| 12 ] | 11 ] |
| 13 | 12 |
| 14 srcjar_deps = [ | 13 srcjar_deps = [ |
| 15 ":dom_distiller_core_font_family_javagen", | 14 ":dom_distiller_core_font_family_javagen", |
| 16 ":dom_distiller_core_theme_javagen", | 15 ":dom_distiller_core_theme_javagen", |
| 17 ] | 16 ] |
| 18 | 17 |
| 19 DEPRECATED_java_in_dir = "java/src" | 18 DEPRECATED_java_in_dir = "java/src" |
| 20 } | 19 } |
| 21 | 20 |
| 22 # GYP: //components/dom_distiller.gypi:dom_distiller_core_font_family_java | 21 # GYP: //components/dom_distiller.gypi:dom_distiller_core_font_family_java |
| 23 java_cpp_template("dom_distiller_core_font_family_javagen") { | 22 java_cpp_template("dom_distiller_core_font_family_javagen") { |
| 24 package_name = "org/chromium/components/dom_distiller/core" | 23 package_name = "org/chromium/components/dom_distiller/core" |
| 25 sources = [ | 24 sources = [ |
| 26 "java/src/org/chromium/components/dom_distiller/core/FontFamily.template" | 25 "java/src/org/chromium/components/dom_distiller/core/FontFamily.template", |
| 27 ] | 26 ] |
| 28 inputs = [ | 27 inputs = [ |
| 29 "../core/font_family_list.h" | 28 "../core/font_family_list.h", |
| 30 ] | 29 ] |
| 31 } | 30 } |
| 32 | 31 |
| 33 # GYP: //components/dom_distiller.gypi:dom_distiller_core_font_family_java | 32 # GYP: //components/dom_distiller.gypi:dom_distiller_core_font_family_java |
| 34 java_cpp_template("dom_distiller_core_theme_javagen") { | 33 java_cpp_template("dom_distiller_core_theme_javagen") { |
| 35 package_name = "org/chromium/components/dom_distiller/core" | 34 package_name = "org/chromium/components/dom_distiller/core" |
| 36 sources = [ | 35 sources = [ |
| 37 "java/src/org/chromium/components/dom_distiller/core/Theme.template" | 36 "java/src/org/chromium/components/dom_distiller/core/Theme.template", |
| 38 ] | 37 ] |
| 39 inputs = [ | 38 inputs = [ |
| 40 "../core/theme_list.h" | 39 "../core/theme_list.h", |
| 41 ] | 40 ] |
| 42 } | 41 } |
| OLD | NEW |