| 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 # GYP version: components/dom_distiller.gypi:dom_distiller_core | 5 # GYP version: components/dom_distiller.gypi:dom_distiller_core |
| 6 static_library("core") { | 6 static_library("core") { |
| 7 sources = [ | 7 sources = [ |
| 8 "../android/component_jni_registrar.cc", | 8 "../android/component_jni_registrar.cc", |
| 9 "../android/component_jni_registrar.h", | 9 "../android/component_jni_registrar.h", |
| 10 "article_distillation_update.cc", | 10 "article_distillation_update.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "url_utils.h", | 40 "url_utils.h", |
| 41 "viewer.cc", | 41 "viewer.cc", |
| 42 "viewer.h", | 42 "viewer.h", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//components/dom_distiller/core/proto", | 47 "//components/dom_distiller/core/proto", |
| 48 "//components/resources", | 48 "//components/resources", |
| 49 "//components/strings", | 49 "//components/strings", |
| 50 "//net", |
| 50 "//skia", | 51 "//skia", |
| 51 "//sync", | 52 "//sync", |
| 52 "//third_party/dom_distiller_js/package/proto", | 53 "//third_party/dom_distiller_js/package/proto", |
| 54 "//ui/base", |
| 55 "//url", |
| 53 #'components.gyp:leveldb_proto', TODO(GYP) | 56 #'components.gyp:leveldb_proto', TODO(GYP) |
| 54 ] | 57 ] |
| 55 | 58 |
| 56 if (is_android) { | 59 if (is_android) { |
| 57 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP) | 60 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP) |
| 58 } | 61 } |
| 59 } | 62 } |
| 60 | 63 |
| 61 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support | 64 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support |
| 62 static_library("test_support") { | 65 static_library("test_support") { |
| 63 sources = [ | 66 sources = [ |
| 64 "dom_distiller_test_util.cc", | 67 "dom_distiller_test_util.cc", |
| 65 "dom_distiller_test_util.h", | 68 "dom_distiller_test_util.h", |
| 66 "fake_distiller.cc", | 69 "fake_distiller.cc", |
| 67 "fake_distiller.h", | 70 "fake_distiller.h", |
| 68 "fake_distiller_page.cc", | 71 "fake_distiller_page.cc", |
| 69 "fake_distiller_page.h", | 72 "fake_distiller_page.h", |
| 70 ] | 73 ] |
| 71 | 74 |
| 72 deps = [ | 75 deps = [ |
| 73 ":core", | 76 ":core", |
| 74 #'components.gyp:leveldb_proto_test_support', TODO(GYP) | 77 #'components.gyp:leveldb_proto_test_support', TODO(GYP) |
| 75 "//sync", | 78 "//sync", |
| 76 "//testing/gmock", | 79 "//testing/gmock", |
| 80 "//testing/gtest", |
| 77 ] | 81 ] |
| 78 } | 82 } |
| 79 | 83 |
| OLD | NEW |