| 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("enhanced_bookmarks") { | 5 source_set("enhanced_bookmarks") { |
| 6 sources = [ | 6 sources = [ |
| 7 "image_store.cc", | 7 "image_store.cc", |
| 8 "image_store.h", | 8 "image_store.h", |
| 9 "image_store_util.cc", | 9 "image_store_util.cc", |
| 10 "image_store_util.h", | 10 "image_store_util.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 if (is_ios) { | 27 if (is_ios) { |
| 28 sources -= [ | 28 sources -= [ |
| 29 "image_store_util.cc", | 29 "image_store_util.cc", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 } | 32 } |
| 33 | 33 |
| 34 source_set("test_support") { | 34 source_set("test_support") { |
| 35 testonly = true |
| 35 sources = [ | 36 sources = [ |
| 36 "test_image_store.cc", | 37 "test_image_store.cc", |
| 37 "test_image_store.h", | 38 "test_image_store.h", |
| 38 ] | 39 ] |
| 39 | 40 |
| 40 deps = [ | 41 deps = [ |
| 41 ":enhanced_bookmarks", | 42 ":enhanced_bookmarks", |
| 42 "//skia", | 43 "//skia", |
| 43 "//testing/gtest", | 44 "//testing/gtest", |
| 44 ] | 45 ] |
| 45 } | 46 } |
| OLD | NEW |