| Index: components/image_fetcher/content/BUILD.gn
|
| diff --git a/components/image_fetcher/content/BUILD.gn b/components/image_fetcher/content/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..05ff7bacb96f905d597eaf8f8d128d7e8bcdcac6
|
| --- /dev/null
|
| +++ b/components/image_fetcher/content/BUILD.gn
|
| @@ -0,0 +1,28 @@
|
| +# Copyright 2017 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +static_library("content") {
|
| + sources = [
|
| + "image_decoder.cc",
|
| + "image_decoder.h",
|
| + "image_decoder_impl.cc",
|
| + "image_decoder_impl.h",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//base",
|
| + "//ui/gfx",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//components/image_fetcher/core",
|
| + "//content/public/browser",
|
| + "//content/public/common",
|
| + "//ipc",
|
| + "//services/data_decoder/public/cpp",
|
| + "//services/service_manager/public/cpp",
|
| + "//skia",
|
| + ]
|
| +}
|
|
|