OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 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 import("//testing/test.gni") |
| 6 |
| 7 source_set("image_decoder") { |
| 8 sources = [ |
| 9 "image_decoder_impl.cc", |
| 10 "image_decoder_impl.h", |
| 11 ] |
| 12 |
| 13 public_deps = [ |
| 14 "//base", |
| 15 "//services/image_decoder/public/interfaces", |
| 16 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 17 ] |
| 18 |
| 19 deps = [ |
| 20 "//content/public/child", |
| 21 "//skia", |
| 22 "//skia/public", |
| 23 ] |
| 24 } |
| 25 |
| 26 test("image_decoder_unittests") { |
| 27 sources = [ |
| 28 "image_decoder_impl_unittest.cc", |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 ":image_decoder", |
| 33 "//base", |
| 34 "//base/allocator", |
| 35 "//skia", |
| 36 "//services/test:run_all_unittests", |
| 37 "//testing/gtest", |
| 38 ] |
| 39 } |
OLD | NEW |