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

Side by Side Diff: components/image_decoder/BUILD.gn

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and address comments. Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « components/image_decoder.gypi ('k') | components/image_decoder/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 "//components/image_decoder/public/interfaces",
16 "//third_party/mojo/src/mojo/public/cpp/bindings",
17 ]
18
19 deps = [
20 "//content/public/child",
21 "//mojo/environment:chromium",
22 "//skia",
23 "//skia/public",
24 ]
25 }
26
27 source_set("unit_tests") {
28 testonly = true
29 sources = [
30 "image_decoder_impl_unittest.cc",
31 ]
32
33 deps = [
34 ":image_decoder",
35 "//base",
36 "//base/allocator",
37 "//content/test:test_support",
38 "//skia",
39 "//testing/gtest",
40 ]
41 }
OLDNEW
« no previous file with comments | « components/image_decoder.gypi ('k') | components/image_decoder/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698