| 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 assert(!is_ios) | 5 assert(!is_ios) |
| 6 | 6 |
| 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 # GYP version: components/dom_distiller.gypi:dom_distiller_mojo_bindings | 9 # GYP version: components/dom_distiller.gypi:dom_distiller_mojo_bindings |
| 10 mojom("mojo_bindings") { | 10 mojom("mojo_bindings") { |
| 11 sources = [ | 11 sources = [ |
| 12 "common/distiller_javascript_service.mojom", | 12 "common/distiller_javascript_service.mojom", |
| 13 "common/distiller_page_notifier_service.mojom", | 13 "common/distiller_page_notifier_service.mojom", |
| 14 ] | 14 ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 # GYP version: components/dom_distiller.gypi:dom_distiller_content_browser | 17 # GYP version: components/dom_distiller.gypi:dom_distiller_content_browser |
| 18 static_library("content_browser") { | 18 static_library("content_browser") { |
| 19 sources = [ | 19 sources = [ |
| 20 "browser/distillable_page_utils.cc", | 20 "browser/distillable_page_utils.cc", |
| 21 "browser/distillable_page_utils.h", | 21 "browser/distillable_page_utils.h", |
| 22 "browser/distiller_javascript_service_impl.cc", | 22 "browser/distiller_javascript_service_impl.cc", |
| 23 "browser/distiller_javascript_service_impl.h", | 23 "browser/distiller_javascript_service_impl.h", |
| 24 "browser/distiller_javascript_utils.cc", | 24 "browser/distiller_javascript_utils.cc", |
| 25 "browser/distiller_javascript_utils.h", | 25 "browser/distiller_javascript_utils.h", |
| 26 "browser/distiller_page_web_contents.cc", | 26 "browser/distiller_page_web_contents.cc", |
| 27 "browser/distiller_page_web_contents.h", | 27 "browser/distiller_page_web_contents.h", |
| 28 "browser/distiller_ui_handle.h", |
| 28 "browser/dom_distiller_viewer_source.cc", | 29 "browser/dom_distiller_viewer_source.cc", |
| 29 "browser/dom_distiller_viewer_source.h", | 30 "browser/dom_distiller_viewer_source.h", |
| 30 "browser/external_feedback_reporter.h", | |
| 31 "browser/web_contents_main_frame_observer.cc", | 31 "browser/web_contents_main_frame_observer.cc", |
| 32 "browser/web_contents_main_frame_observer.h", | 32 "browser/web_contents_main_frame_observer.h", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 public_deps = [ | 35 public_deps = [ |
| 36 "//components/dom_distiller/core", | 36 "//components/dom_distiller/core", |
| 37 "//content/public/browser", | 37 "//content/public/browser", |
| 38 ] | 38 ] |
| 39 deps = [ | 39 deps = [ |
| 40 ":mojo_bindings", | 40 ":mojo_bindings", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 testonly = true | 98 testonly = true |
| 99 sources = [ | 99 sources = [ |
| 100 "browser/dom_distiller_viewer_source_unittest.cc", | 100 "browser/dom_distiller_viewer_source_unittest.cc", |
| 101 "browser/web_contents_main_frame_observer_unittest.cc", | 101 "browser/web_contents_main_frame_observer_unittest.cc", |
| 102 ] | 102 ] |
| 103 deps = [ | 103 deps = [ |
| 104 ":content_browser", | 104 ":content_browser", |
| 105 "//testing/gtest", | 105 "//testing/gtest", |
| 106 ] | 106 ] |
| 107 } | 107 } |
| OLD | NEW |