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

Side by Side Diff: blimp/client/core/compositor/BUILD.gn

Issue 2160363002: Move ImageSerializationProcessor code to blimp/client/core (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-blimp-client-core
Patch Set: fix public_deps for //blimp/test Created 4 years, 5 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 | « blimp/client/core/BUILD.gn ('k') | blimp/client/core/compositor/blimp_client_picture_cache.h » ('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 source_set("compositor") {
6 visibility = [ "//blimp/client/*" ]
7
8 sources = [
9 "blimp_client_picture_cache.cc",
10 "blimp_client_picture_cache.h",
11 "blimp_image_decoder.cc",
12 "blimp_image_decoder.h",
13 "blob_image_serialization_processor.cc",
14 "blob_image_serialization_processor.h",
15 "decoding_image_generator.cc",
16 "decoding_image_generator.h",
17 ]
18
19 deps = [
20 "//blimp/net",
21 "//third_party/libwebp",
22 ]
23
24 public_deps = [
25 "//base",
26 "//blimp/common",
27 "//blimp/common/proto",
28 "//cc",
29 "//skia",
30 ]
31 }
32
33 source_set("unit_tests") {
34 visibility = [ "//blimp/client/core:unit_tests" ]
35
36 testonly = true
37
38 sources = [
39 "blimp_client_picture_cache_unittest.cc",
40 ]
41
42 deps = [
43 ":compositor",
44 "//blimp/test:support",
45 "//skia",
46 "//testing/gtest",
47 ]
48 }
OLDNEW
« no previous file with comments | « blimp/client/core/BUILD.gn ('k') | blimp/client/core/compositor/blimp_client_picture_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698