| 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 component("wallpaper") { | 5 component("wallpaper") { |
| 6 sources = [ | 6 sources = [ |
| 7 "pref_based_wallpaper_color_cache.cc", |
| 8 "pref_based_wallpaper_color_cache.h", |
| 9 "wallpaper_color_cache.h", |
| 7 "wallpaper_color_calculator.cc", | 10 "wallpaper_color_calculator.cc", |
| 8 "wallpaper_color_calculator.h", | 11 "wallpaper_color_calculator.h", |
| 9 "wallpaper_color_calculator_observer.h", | 12 "wallpaper_color_calculator_observer.h", |
| 10 "wallpaper_files_id.cc", | 13 "wallpaper_files_id.cc", |
| 11 "wallpaper_files_id.h", | 14 "wallpaper_files_id.h", |
| 12 "wallpaper_layout.h", | 15 "wallpaper_layout.h", |
| 13 "wallpaper_resizer.cc", | 16 "wallpaper_resizer.cc", |
| 14 "wallpaper_resizer.h", | 17 "wallpaper_resizer.h", |
| 15 "wallpaper_resizer_observer.h", | 18 "wallpaper_resizer_observer.h", |
| 16 ] | 19 ] |
| (...skipping 18 matching lines...) Expand all Loading... |
| 35 deps += [ | 38 deps += [ |
| 36 "//components/signin/core/account_id", | 39 "//components/signin/core/account_id", |
| 37 "//components/user_manager", | 40 "//components/user_manager", |
| 38 ] | 41 ] |
| 39 } | 42 } |
| 40 } | 43 } |
| 41 | 44 |
| 42 source_set("unit_tests") { | 45 source_set("unit_tests") { |
| 43 testonly = true | 46 testonly = true |
| 44 sources = [ | 47 sources = [ |
| 48 "pref_based_wallpaper_color_cache_unittest.cc", |
| 45 "wallpaper_color_calculator_unittest.cc", | 49 "wallpaper_color_calculator_unittest.cc", |
| 46 "wallpaper_resizer_unittest.cc", | 50 "wallpaper_resizer_unittest.cc", |
| 47 ] | 51 ] |
| 48 | 52 |
| 49 deps = [ | 53 deps = [ |
| 50 ":wallpaper", | 54 ":wallpaper", |
| 51 "//base/test:test_support", | 55 "//base/test:test_support", |
| 52 "//testing/gtest", | 56 "//testing/gtest", |
| 53 "//ui/gfx", | 57 "//ui/gfx", |
| 54 ] | 58 ] |
| 55 } | 59 } |
| OLD | NEW |