| 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 source_set("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_fetcher.h", | 10 "image_fetcher.h", |
| 11 "image_fetcher_delegate.h", | 11 "image_fetcher_delegate.h", |
| 12 "image_manager.cc", | 12 "image_manager.cc", |
| 13 "image_manager.h", | 13 "image_manager.h", |
| 14 "suggestions_pref_names.cc", | 14 "suggestions_pref_names.cc", |
| 15 "suggestions_pref_names.h", | 15 "suggestions_pref_names.h", |
| 16 "suggestions_service.cc", | 16 "suggestions_service.cc", |
| 17 "suggestions_service.h", | 17 "suggestions_service.h", |
| 18 "suggestions_store.cc", | 18 "suggestions_store.cc", |
| 19 "suggestions_store.h", | 19 "suggestions_store.h", |
| 20 "suggestions_utils.cc", | 20 "suggestions_utils.cc", |
| 21 "suggestions_utils.h", | 21 "suggestions_utils.h", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 public_deps = [ | 24 public_deps = [ |
| 25 "//base", | 25 "//base", |
| 26 "//base:prefs", | 26 "//components/prefs", |
| 27 "//components/suggestions/proto", | 27 "//components/suggestions/proto", |
| 28 "//net", | 28 "//net", |
| 29 "//ui/gfx", | 29 "//ui/gfx", |
| 30 "//url", | 30 "//url", |
| 31 ] | 31 ] |
| 32 deps = [ | 32 deps = [ |
| 33 "//components/data_use_measurement/core", | 33 "//components/data_use_measurement/core", |
| 34 "//components/google/core/browser", | 34 "//components/google/core/browser", |
| 35 "//components/keyed_service/core", | 35 "//components/keyed_service/core", |
| 36 "//components/leveldb_proto", | 36 "//components/leveldb_proto", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 60 ":suggestions", | 60 ":suggestions", |
| 61 "//base/test:test_support", | 61 "//base/test:test_support", |
| 62 "//components/leveldb_proto:test_support", | 62 "//components/leveldb_proto:test_support", |
| 63 "//components/pref_registry:test_support", | 63 "//components/pref_registry:test_support", |
| 64 "//components/signin/core/browser:test_support", | 64 "//components/signin/core/browser: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 |