| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['android_webview_build == 0', { | 7 ['android_webview_build == 0', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 # GN version: //components/dom_distiller/webui | 10 # GN version: //components/dom_distiller/webui |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'dom_distiller/core/dom_distiller_model.h', | 76 'dom_distiller/core/dom_distiller_model.h', |
| 77 'dom_distiller/core/dom_distiller_observer.h', | 77 'dom_distiller/core/dom_distiller_observer.h', |
| 78 'dom_distiller/core/dom_distiller_service.cc', | 78 'dom_distiller/core/dom_distiller_service.cc', |
| 79 'dom_distiller/core/dom_distiller_service.h', | 79 'dom_distiller/core/dom_distiller_service.h', |
| 80 'dom_distiller/core/dom_distiller_service_android.cc', | 80 'dom_distiller/core/dom_distiller_service_android.cc', |
| 81 'dom_distiller/core/dom_distiller_service_android.h', | 81 'dom_distiller/core/dom_distiller_service_android.h', |
| 82 'dom_distiller/core/dom_distiller_store.cc', | 82 'dom_distiller/core/dom_distiller_store.cc', |
| 83 'dom_distiller/core/dom_distiller_store.h', | 83 'dom_distiller/core/dom_distiller_store.h', |
| 84 'dom_distiller/core/feedback_reporter.cc', | 84 'dom_distiller/core/feedback_reporter.cc', |
| 85 'dom_distiller/core/feedback_reporter.h', | 85 'dom_distiller/core/feedback_reporter.h', |
| 86 'dom_distiller/core/font_family_list.h', |
| 86 'dom_distiller/core/task_tracker.cc', | 87 'dom_distiller/core/task_tracker.cc', |
| 87 'dom_distiller/core/task_tracker.h', | 88 'dom_distiller/core/task_tracker.h', |
| 88 'dom_distiller/core/theme_list.h', | 89 'dom_distiller/core/theme_list.h', |
| 89 'dom_distiller/core/url_constants.cc', | 90 'dom_distiller/core/url_constants.cc', |
| 90 'dom_distiller/core/url_constants.h', | 91 'dom_distiller/core/url_constants.h', |
| 91 'dom_distiller/core/url_utils_android.cc', | 92 'dom_distiller/core/url_utils_android.cc', |
| 92 'dom_distiller/core/url_utils_android.h', | 93 'dom_distiller/core/url_utils_android.h', |
| 93 'dom_distiller/core/url_utils.cc', | 94 'dom_distiller/core/url_utils.cc', |
| 94 'dom_distiller/core/url_utils.h', | 95 'dom_distiller/core/url_utils.h', |
| 95 'dom_distiller/core/viewer.cc', | 96 'dom_distiller/core/viewer.cc', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 ], | 170 ], |
| 170 }, | 171 }, |
| 171 ], | 172 ], |
| 172 }], | 173 }], |
| 173 ['OS=="android"', { | 174 ['OS=="android"', { |
| 174 'targets': [ | 175 'targets': [ |
| 175 { | 176 { |
| 176 'target_name': 'dom_distiller_core_java', | 177 'target_name': 'dom_distiller_core_java', |
| 177 'type': 'none', | 178 'type': 'none', |
| 178 'dependencies': [ | 179 'dependencies': [ |
| 180 'dom_distiller_core_font_family_java', |
| 179 'dom_distiller_core_theme_java', | 181 'dom_distiller_core_theme_java', |
| 180 '../base/base.gyp:base', | 182 '../base/base.gyp:base', |
| 181 ], | 183 ], |
| 182 'variables': { | 184 'variables': { |
| 183 'java_in_dir': 'dom_distiller/android/java', | 185 'java_in_dir': 'dom_distiller/android/java', |
| 184 }, | 186 }, |
| 185 'includes': [ '../build/java.gypi' ], | 187 'includes': [ '../build/java.gypi' ], |
| 186 }, | 188 }, |
| 187 { | 189 { |
| 190 'target_name': 'dom_distiller_core_font_family_java', |
| 191 'type': 'none', |
| 192 'sources': [ |
| 193 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/FontFamily.template', |
| 194 ], |
| 195 'variables': { |
| 196 'package_name': 'org/chromium/components/dom_distiller/core', |
| 197 'template_deps': ['dom_distiller/core/font_family_list.h'], |
| 198 }, |
| 199 'includes': [ '../build/android/java_cpp_template.gypi' ], |
| 200 }, |
| 201 { |
| 188 'target_name': 'dom_distiller_core_jni_headers', | 202 'target_name': 'dom_distiller_core_jni_headers', |
| 189 'type': 'none', | 203 'type': 'none', |
| 190 'sources': [ | 204 'sources': [ |
| 191 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DistilledPagePrefs.java', | 205 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DistilledPagePrefs.java', |
| 192 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DomDistillerService.java', | 206 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DomDistillerService.java', |
| 193 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DomDistillerUrlUtils.java', | 207 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DomDistillerUrlUtils.java', |
| 194 ], | 208 ], |
| 195 'variables': { | 209 'variables': { |
| 196 'jni_gen_package': 'dom_distiller_core', | 210 'jni_gen_package': 'dom_distiller_core', |
| 197 }, | 211 }, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 208 'template_deps': ['dom_distiller/core/theme_list.h'], | 222 'template_deps': ['dom_distiller/core/theme_list.h'], |
| 209 }, | 223 }, |
| 210 'includes': [ '../build/android/java_cpp_template.gypi' ], | 224 'includes': [ '../build/android/java_cpp_template.gypi' ], |
| 211 }, | 225 }, |
| 212 ], | 226 ], |
| 213 }], | 227 }], |
| 214 ], | 228 ], |
| 215 }], | 229 }], |
| 216 ], | 230 ], |
| 217 } | 231 } |
| OLD | NEW |