| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("content") { |
| 6 sources = [ |
| 7 "image_decoder.cc", |
| 8 "image_decoder.h", |
| 9 "image_decoder_impl.cc", |
| 10 "image_decoder_impl.h", |
| 11 ] |
| 12 |
| 13 public_deps = [ |
| 14 "//base", |
| 15 "//ui/gfx", |
| 16 ] |
| 17 |
| 18 deps = [ |
| 19 "//base", |
| 20 "//components/image_fetcher/core", |
| 21 "//content/public/browser", |
| 22 "//content/public/common", |
| 23 "//ipc", |
| 24 "//services/data_decoder/public/cpp", |
| 25 "//services/service_manager/public/cpp", |
| 26 "//skia", |
| 27 ] |
| 28 } |
| OLD | NEW |