| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 deps = [ | 49 deps = [ |
| 50 "//base", | 50 "//base", |
| 51 "//components/dom_distiller/core/proto", | 51 "//components/dom_distiller/core/proto", |
| 52 "//components/leveldb_proto", | 52 "//components/leveldb_proto", |
| 53 "//components/resources", | 53 "//components/resources", |
| 54 "//components/strings", | 54 "//components/strings", |
| 55 "//net", | 55 "//net", |
| 56 "//skia", | 56 "//skia", |
| 57 "//sync", | 57 "//sync", |
| 58 "//third_party/dom_distiller_js/package/proto", | 58 "//third_party/dom_distiller_js:proto", |
| 59 "//ui/base", | 59 "//ui/base", |
| 60 "//url", | 60 "//url", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 forward_dependent_configs_from = [ | 63 forward_dependent_configs_from = [ |
| 64 "//components/dom_distiller/core/proto", | 64 "//components/dom_distiller/core/proto", |
| 65 "//third_party/dom_distiller_js/package/proto", | 65 "//third_party/dom_distiller_js:proto", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 if (is_android) { | 68 if (is_android) { |
| 69 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP) | 69 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP) |
| 70 } | 70 } |
| 71 } | 71 } |
| 72 | 72 |
| 73 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support | 73 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support |
| 74 static_library("test_support") { | 74 static_library("test_support") { |
| 75 sources = [ | 75 sources = [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 105 "viewer_unittest.cc", | 105 "viewer_unittest.cc", |
| 106 ] | 106 ] |
| 107 | 107 |
| 108 deps = [ | 108 deps = [ |
| 109 ":core", | 109 ":core", |
| 110 ":test_support", | 110 ":test_support", |
| 111 "//testing/gmock", | 111 "//testing/gmock", |
| 112 "//testing/gtest", | 112 "//testing/gtest", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| OLD | NEW |