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

Side by Side Diff: services/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: Clean up and add test. Created 5 years, 8 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
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 "//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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698