| 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 source_set("search_provider_logos") { | 5 static_library("search_provider_logos") { |
| 6 sources = [ | 6 sources = [ |
| 7 "google_logo_api.cc", | 7 "google_logo_api.cc", |
| 8 "google_logo_api.h", | 8 "google_logo_api.h", |
| 9 "logo_cache.cc", | 9 "logo_cache.cc", |
| 10 "logo_cache.h", | 10 "logo_cache.h", |
| 11 "logo_common.cc", | 11 "logo_common.cc", |
| 12 "logo_common.h", | 12 "logo_common.h", |
| 13 "logo_tracker.cc", | 13 "logo_tracker.cc", |
| 14 "logo_tracker.h", | 14 "logo_tracker.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 public_deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//net", |
| 19 "//skia", | 20 "//skia", |
| 20 ] | |
| 21 | |
| 22 deps = [ | |
| 23 "//net", | |
| 24 "//ui/gfx", | 21 "//ui/gfx", |
| 25 "//url", | 22 "//url", |
| 26 ] | 23 ] |
| 27 } | 24 } |
| 28 | |
| 29 source_set("unit_tests") { | |
| 30 testonly = true | |
| 31 sources = [ | |
| 32 "logo_cache_unittest.cc", | |
| 33 "logo_tracker_unittest.cc", | |
| 34 ] | |
| 35 deps = [ | |
| 36 ":search_provider_logos", | |
| 37 "//testing/gmock", | |
| 38 "//testing/gtest", | |
| 39 ] | |
| 40 } | |
| OLD | NEW |