| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # GYP version: components/dom_distiller.gypi:dom_distiller_content_browser | 7 # GYP version: components/dom_distiller.gypi:dom_distiller_content_browser |
| 8 static_library("browser") { | 8 static_library("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "distillability_driver.cc", | 10 "distillability_driver.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "web_contents_main_frame_observer.cc", | 23 "web_contents_main_frame_observer.cc", |
| 24 "web_contents_main_frame_observer.h", | 24 "web_contents_main_frame_observer.h", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 public_deps = [ | 27 public_deps = [ |
| 28 "//components/dom_distiller/core", | 28 "//components/dom_distiller/core", |
| 29 "//content/public/browser", | 29 "//content/public/browser", |
| 30 ] | 30 ] |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//components/dom_distiller/content/common", | |
| 34 "//components/dom_distiller/content/common:mojo_bindings", | 33 "//components/dom_distiller/content/common:mojo_bindings", |
| 35 "//components/resources", | 34 "//components/resources", |
| 36 "//components/strings", | 35 "//components/strings", |
| 37 "//content/public/browser", | 36 "//content/public/browser", |
| 38 "//content/public/common", | 37 "//content/public/common", |
| 39 "//mojo/public/cpp/bindings", | 38 "//mojo/public/cpp/bindings", |
| 40 "//net", | 39 "//net", |
| 41 "//skia", | 40 "//skia", |
| 42 "//sync", | 41 "//sync", |
| 43 "//third_party/WebKit/public:blink_headers", | 42 "//third_party/WebKit/public:blink_headers", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 sources = [ | 61 sources = [ |
| 63 "dom_distiller_viewer_source_unittest.cc", | 62 "dom_distiller_viewer_source_unittest.cc", |
| 64 "web_contents_main_frame_observer_unittest.cc", | 63 "web_contents_main_frame_observer_unittest.cc", |
| 65 ] | 64 ] |
| 66 deps = [ | 65 deps = [ |
| 67 ":browser", | 66 ":browser", |
| 68 "//content/test:test_support", | 67 "//content/test:test_support", |
| 69 "//testing/gtest", | 68 "//testing/gtest", |
| 70 ] | 69 ] |
| 71 } | 70 } |
| OLD | NEW |