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 source_set("search_provider_logos") { |
6 sources = [ | 6 sources = [ |
| 7 "animated_logo_tracker.cc", |
| 8 "animated_logo_tracker.h", |
7 "google_logo_api.cc", | 9 "google_logo_api.cc", |
8 "google_logo_api.h", | 10 "google_logo_api.h", |
9 "logo_cache.cc", | 11 "logo_cache.cc", |
10 "logo_cache.h", | 12 "logo_cache.h", |
11 "logo_common.cc", | 13 "logo_common.cc", |
12 "logo_common.h", | 14 "logo_common.h", |
13 "logo_tracker.cc", | 15 "logo_tracker.cc", |
14 "logo_tracker.h", | 16 "logo_tracker.h", |
15 ] | 17 ] |
16 | 18 |
(...skipping 14 matching lines...) Expand all Loading... |
31 sources = [ | 33 sources = [ |
32 "logo_cache_unittest.cc", | 34 "logo_cache_unittest.cc", |
33 "logo_tracker_unittest.cc", | 35 "logo_tracker_unittest.cc", |
34 ] | 36 ] |
35 deps = [ | 37 deps = [ |
36 ":search_provider_logos", | 38 ":search_provider_logos", |
37 "//testing/gmock", | 39 "//testing/gmock", |
38 "//testing/gtest", | 40 "//testing/gtest", |
39 ] | 41 ] |
40 } | 42 } |
OLD | NEW |