| 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("suggestions") { | 5 static_library("suggestions") { |
| 6 sources = [ | 6 sources = [ |
| 7 "blacklist_store.cc", | 7 "blacklist_store.cc", |
| 8 "blacklist_store.h", | 8 "blacklist_store.h", |
| 9 "image_encoder.h", | 9 "image_encoder.h", |
| 10 "image_manager.cc", | 10 "image_manager.cc", |
| 11 "image_manager.h", | 11 "image_manager.h", |
| 12 "suggestions_pref_names.cc", | 12 "suggestions_pref_names.cc", |
| 13 "suggestions_pref_names.h", | 13 "suggestions_pref_names.h", |
| 14 "suggestions_service.cc", | 14 "suggestions_service.cc", |
| 15 "suggestions_service.h", | 15 "suggestions_service.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "//components/image_fetcher", | 60 "//components/image_fetcher", |
| 61 "//components/leveldb_proto:test_support", | 61 "//components/leveldb_proto:test_support", |
| 62 "//components/pref_registry:test_support", | 62 "//components/pref_registry:test_support", |
| 63 "//components/signin/core/browser:test_support", | 63 "//components/signin/core/browser:test_support", |
| 64 "//components/sync_driver:test_support", | 64 "//components/sync_driver:test_support", |
| 65 "//net:test_support", | 65 "//net:test_support", |
| 66 "//testing/gmock", | 66 "//testing/gmock", |
| 67 "//testing/gtest", | 67 "//testing/gtest", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| OLD | NEW |