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 static_library("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_fetcher.h", | 9 "image_fetcher.h", |
10 "image_fetcher_delegate.h", | 10 "image_fetcher_delegate.h", |
(...skipping 12 matching lines...) Expand all Loading... |
23 deps = [ | 23 deps = [ |
24 "//base", | 24 "//base", |
25 "//components/keyed_service/core", | 25 "//components/keyed_service/core", |
26 "//components/pref_registry", | 26 "//components/pref_registry", |
27 "//components/suggestions/proto", | 27 "//components/suggestions/proto", |
28 "//components/variations", | 28 "//components/variations", |
29 "//net", | 29 "//net", |
30 "//ui/gfx", | 30 "//ui/gfx", |
31 "//url", | 31 "//url", |
32 ] | 32 ] |
| 33 |
| 34 if (is_ios) { |
| 35 sources += [ |
| 36 "image_encoder_ios.h", |
| 37 "image_encoder_ios.mm", |
| 38 ] |
| 39 } else { |
| 40 sources += [ |
| 41 "image_encoder.cc", |
| 42 "image_encoder.h", |
| 43 ] |
| 44 } |
33 } | 45 } |
OLD | NEW |