| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks | 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 } | 72 } |
| 73 | 73 |
| 74 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support | 74 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support |
| 75 source_set("test_support") { | 75 source_set("test_support") { |
| 76 testonly = true | 76 testonly = true |
| 77 sources = [ | 77 sources = [ |
| 78 "test_image_store.cc", | 78 "test_image_store.cc", |
| 79 "test_image_store.h", | 79 "test_image_store.h", |
| 80 ] | 80 ] |
| 81 | 81 |
| 82 deps = [ | 82 public_deps = [ |
| 83 ":enhanced_bookmarks", | 83 ":enhanced_bookmarks", |
| 84 "//skia", | 84 "//skia", |
| 85 "//testing/gtest", | 85 "//testing/gtest", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 |
| 89 source_set("unit_tests") { |
| 90 testonly = true |
| 91 sources = [ |
| 92 "enhanced_bookmark_model_unittest.cc", |
| 93 "image_store_ios_unittest.mm", |
| 94 "image_store_unittest.cc", |
| 95 "item_position_unittest.cc", |
| 96 ] |
| 97 deps = [ |
| 98 ":test_support", |
| 99 "//components/enhanced_bookmarks/proto", |
| 100 ] |
| 101 } |
| OLD | NEW |