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

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

Issue 2475543003: Introduce the image_decoder service (Closed)
Patch Set: . Created 4 years, 1 month 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 | « services/OWNERS ('k') | services/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 2016 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("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni")
7
8 source_set("lib") {
9 sources = [
10 "image_decoder_impl.cc",
11 "image_decoder_impl.h",
12 "image_decoder_service.cc",
13 "image_decoder_service.h",
14 ]
15
16 deps = [
17 "//base",
18 "//content/public/child",
19 "//mojo/public/cpp/bindings",
20 "//skia",
21 "//ui/gfx",
22 "//ui/gfx/geometry",
23 ]
24
25 public_deps = [
26 "//services/image_decoder/public/interfaces",
27 "//services/service_manager/public/cpp",
28 ]
29
30 data_deps = [
31 ":manifest",
32 ]
33 }
34
35 source_set("tests") {
36 testonly = true
37
38 sources = [
39 "image_decoder_impl_unittest.cc",
40 ]
41
42 deps = [
43 ":lib",
44 "//base",
45 "//gin",
46 "//gin:gin_test",
47 "//skia",
48 "//testing/gtest",
49 "//third_party/WebKit/public:blink",
50 "//ui/gfx",
51 ]
52
53 configs += [ "//v8:external_startup_data" ]
54 }
55
56 service_manifest("manifest") {
57 name = "image_decoder"
58 source = "manifest.json"
59 }
OLDNEW
« no previous file with comments | « services/OWNERS ('k') | services/image_decoder/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698