| 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", | 7 "wallpaper_color_calculator.cc", |
| 8 "wallpaper_color_calculator.h", | 8 "wallpaper_color_calculator.h", |
| 9 "wallpaper_color_calculator_observer.h", | 9 "wallpaper_color_calculator_observer.h", |
| 10 "wallpaper_color_extraction_result.h", |
| 10 "wallpaper_files_id.cc", | 11 "wallpaper_files_id.cc", |
| 11 "wallpaper_files_id.h", | 12 "wallpaper_files_id.h", |
| 12 "wallpaper_layout.h", | 13 "wallpaper_layout.h", |
| 13 "wallpaper_resizer.cc", | 14 "wallpaper_resizer.cc", |
| 14 "wallpaper_resizer.h", | 15 "wallpaper_resizer.h", |
| 15 "wallpaper_resizer_observer.h", | 16 "wallpaper_resizer_observer.h", |
| 16 ] | 17 ] |
| 17 | 18 |
| 18 defines = [ "WALLPAPER_IMPLEMENTATION" ] | 19 defines = [ "WALLPAPER_IMPLEMENTATION" ] |
| 19 | 20 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 42 source_set("unit_tests") { | 43 source_set("unit_tests") { |
| 43 testonly = true | 44 testonly = true |
| 44 sources = [ | 45 sources = [ |
| 45 "wallpaper_color_calculator_unittest.cc", | 46 "wallpaper_color_calculator_unittest.cc", |
| 46 "wallpaper_resizer_unittest.cc", | 47 "wallpaper_resizer_unittest.cc", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 deps = [ | 50 deps = [ |
| 50 ":wallpaper", | 51 ":wallpaper", |
| 51 "//base/test:test_support", | 52 "//base/test:test_support", |
| 53 "//testing/gmock", |
| 52 "//testing/gtest", | 54 "//testing/gtest", |
| 53 "//ui/gfx", | 55 "//ui/gfx", |
| 54 ] | 56 ] |
| 55 } | 57 } |
| OLD | NEW |