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