OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 } | 7 } |
8 | 8 |
9 static_library("ntp_tiles") { | 9 static_library("ntp_tiles") { |
10 sources = [ | 10 sources = [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "popular_sites_unittest.cc", | 81 "popular_sites_unittest.cc", |
82 ] | 82 ] |
83 | 83 |
84 deps = [ | 84 deps = [ |
85 ":json_unsafe_parser", | 85 ":json_unsafe_parser", |
86 ":ntp_tiles", | 86 ":ntp_tiles", |
87 "//base/test:test_support", | 87 "//base/test:test_support", |
88 "//components/favicon/core", | 88 "//components/favicon/core", |
89 "//components/favicon_base", | 89 "//components/favicon_base", |
90 "//components/image_fetcher", | 90 "//components/image_fetcher", |
91 "//components/pref_registry:test_support", | 91 "//components/pref_registry:pref_registry", |
| 92 "//components/sync_preferences:test_support", |
92 "//net:test_support", | 93 "//net:test_support", |
93 "//testing/gmock", | 94 "//testing/gmock", |
94 "//testing/gtest", | 95 "//testing/gtest", |
95 "//ui/gfx:test_support", | 96 "//ui/gfx:test_support", |
96 ] | 97 ] |
97 } | 98 } |
98 | 99 |
99 if (is_android) { | 100 if (is_android) { |
100 java_cpp_enum("ntp_tiles_enums_java") { | 101 java_cpp_enum("ntp_tiles_enums_java") { |
101 sources = [ | 102 sources = [ |
102 "metrics.h", | 103 "metrics.h", |
103 "ntp_tile_source.h", | 104 "ntp_tile_source.h", |
104 ] | 105 ] |
105 } | 106 } |
106 } | 107 } |
OLD | NEW |