| 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 static_library("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 "switches.cc", | 15 "switches.cc", |
| 16 "switches.h", | 16 "switches.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 public_deps = [ | 19 public_deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//skia", | 21 "//skia", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 deps = [ | 24 deps = [ |
| 25 "//components/data_use_measurement/core", |
| 25 "//net", | 26 "//net", |
| 26 "//ui/gfx", | 27 "//ui/gfx", |
| 27 "//url", | 28 "//url", |
| 28 ] | 29 ] |
| 29 } | 30 } |
| 30 | 31 |
| 31 source_set("unit_tests") { | 32 source_set("unit_tests") { |
| 32 testonly = true | 33 testonly = true |
| 33 sources = [ | 34 sources = [ |
| 34 "logo_cache_unittest.cc", | 35 "logo_cache_unittest.cc", |
| 35 "logo_tracker_unittest.cc", | 36 "logo_tracker_unittest.cc", |
| 36 ] | 37 ] |
| 37 deps = [ | 38 deps = [ |
| 38 ":search_provider_logos", | 39 ":search_provider_logos", |
| 39 "//base/test:test_support", | 40 "//base/test:test_support", |
| 40 "//net:test_support", | 41 "//net:test_support", |
| 41 "//testing/gmock", | 42 "//testing/gmock", |
| 42 "//testing/gtest", | 43 "//testing/gtest", |
| 43 "//ui/gfx", | 44 "//ui/gfx", |
| 44 ] | 45 ] |
| 45 } | 46 } |
| OLD | NEW |