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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 #'components.gyp:leveldb_proto', TODO(GYP) | 53 #'components.gyp:leveldb_proto', TODO(GYP) |
54 ] | 54 ] |
55 | 55 |
56 if (is_android) { | 56 if (is_android) { |
57 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP) | 57 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP) |
58 } | 58 } |
59 } | 59 } |
60 | 60 |
61 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support | 61 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support |
62 static_library("test_support") { | 62 static_library("test_support") { |
| 63 output_name = "dom_distiller_test_support" |
63 sources = [ | 64 sources = [ |
64 "dom_distiller_test_util.cc", | 65 "dom_distiller_test_util.cc", |
65 "dom_distiller_test_util.h", | 66 "dom_distiller_test_util.h", |
66 "fake_distiller.cc", | 67 "fake_distiller.cc", |
67 "fake_distiller.h", | 68 "fake_distiller.h", |
68 "fake_distiller_page.cc", | 69 "fake_distiller_page.cc", |
69 "fake_distiller_page.h", | 70 "fake_distiller_page.h", |
70 ] | 71 ] |
71 | 72 |
72 deps = [ | 73 deps = [ |
73 ":core", | 74 ":core", |
74 #'components.gyp:leveldb_proto_test_support', TODO(GYP) | 75 #'components.gyp:leveldb_proto_test_support', TODO(GYP) |
75 "//sync", | 76 "//sync", |
76 "//testing/gmock", | 77 "//testing/gmock", |
77 ] | 78 ] |
78 } | 79 } |
79 | 80 |
OLD | NEW |