| 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 'target_name': 'dom_distiller_webui', | 10 'target_name': 'dom_distiller_webui', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 'components_resources.gyp:components_resources', | 41 'components_resources.gyp:components_resources', |
| 42 'distilled_page_proto', | 42 'distilled_page_proto', |
| 43 ], | 43 ], |
| 44 'include_dirs': [ | 44 'include_dirs': [ |
| 45 '..', | 45 '..', |
| 46 ], | 46 ], |
| 47 'export_dependent_settings': [ | 47 'export_dependent_settings': [ |
| 48 'distilled_page_proto', | 48 'distilled_page_proto', |
| 49 ], | 49 ], |
| 50 'sources': [ | 50 'sources': [ |
| 51 'dom_distiller/android/component_jni_registrar.cc', | |
| 52 'dom_distiller/android/component_jni_registrar.h', | |
| 53 'dom_distiller/core/article_distillation_update.cc', | 51 'dom_distiller/core/article_distillation_update.cc', |
| 54 'dom_distiller/core/article_distillation_update.h', | 52 'dom_distiller/core/article_distillation_update.h', |
| 55 'dom_distiller/core/article_entry.cc', | 53 'dom_distiller/core/article_entry.cc', |
| 56 'dom_distiller/core/article_entry.h', | 54 'dom_distiller/core/article_entry.h', |
| 57 'dom_distiller/core/distiller.cc', | 55 'dom_distiller/core/distiller.cc', |
| 58 'dom_distiller/core/distiller.h', | 56 'dom_distiller/core/distiller.h', |
| 59 'dom_distiller/core/distiller_page.cc', | 57 'dom_distiller/core/distiller_page.cc', |
| 60 'dom_distiller/core/distiller_page.h', | 58 'dom_distiller/core/distiller_page.h', |
| 61 'dom_distiller/core/distiller_url_fetcher.cc', | 59 'dom_distiller/core/distiller_url_fetcher.cc', |
| 62 'dom_distiller/core/distiller_url_fetcher.h', | 60 'dom_distiller/core/distiller_url_fetcher.h', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 73 'dom_distiller/core/dom_distiller_store.h', | 71 'dom_distiller/core/dom_distiller_store.h', |
| 74 'dom_distiller/core/feedback_reporter.cc', | 72 'dom_distiller/core/feedback_reporter.cc', |
| 75 'dom_distiller/core/feedback_reporter.h', | 73 'dom_distiller/core/feedback_reporter.h', |
| 76 'dom_distiller/core/page_distiller.cc', | 74 'dom_distiller/core/page_distiller.cc', |
| 77 'dom_distiller/core/page_distiller.h', | 75 'dom_distiller/core/page_distiller.h', |
| 78 'dom_distiller/core/task_tracker.cc', | 76 'dom_distiller/core/task_tracker.cc', |
| 79 'dom_distiller/core/task_tracker.h', | 77 'dom_distiller/core/task_tracker.h', |
| 80 'dom_distiller/core/url_constants.cc', | 78 'dom_distiller/core/url_constants.cc', |
| 81 'dom_distiller/core/url_constants.h', | 79 'dom_distiller/core/url_constants.h', |
| 82 'dom_distiller/core/url_utils_android.cc', | 80 'dom_distiller/core/url_utils_android.cc', |
| 83 'dom_distiller/core/url_utils_android.h', | |
| 84 'dom_distiller/core/url_utils.cc', | 81 'dom_distiller/core/url_utils.cc', |
| 85 'dom_distiller/core/url_utils.h', | 82 'dom_distiller/core/url_utils.h', |
| 86 ], | 83 ], |
| 87 'conditions': [ | 84 'conditions': [ |
| 88 ['OS == "android"', { | 85 ['OS == "android"', { |
| 89 'dependencies': [ | 86 'dependencies': [ |
| 90 'dom_distiller_core_jni_headers', | 87 'dom_distiller_core_jni_headers', |
| 91 ], | 88 ], |
| 92 }], | 89 }], |
| 93 ], | 90 ], |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 'jni_gen_package': 'dom_distiller_core', | 173 'jni_gen_package': 'dom_distiller_core', |
| 177 }, | 174 }, |
| 178 'includes': [ '../build/jni_generator.gypi' ], | 175 'includes': [ '../build/jni_generator.gypi' ], |
| 179 }, | 176 }, |
| 180 ], | 177 ], |
| 181 }], | 178 }], |
| 182 ], | 179 ], |
| 183 }], | 180 }], |
| 184 ], | 181 ], |
| 185 } | 182 } |
| OLD | NEW |