Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Unified Diff: components/image_fetcher/content/BUILD.gn

Issue 2763103002: Move ImageDecoder to components/image_fetcher/content (Closed)
Patch Set: Rebased. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/BUILD.gn ('k') | components/image_fetcher/content/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
+}
« no previous file with comments | « chrome/test/BUILD.gn ('k') | components/image_fetcher/content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698