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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/compositor/BUILD.gn
diff --git a/blimp/client/core/compositor/BUILD.gn b/blimp/client/core/compositor/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..07a13e856aefdcae308b4523345ac2d758b75706
--- /dev/null
+++ b/blimp/client/core/compositor/BUILD.gn
@@ -0,0 +1,48 @@
+# Copyright 2016 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.
+
+source_set("compositor") {
+ visibility = [ "//blimp/client/*" ]
+
+ sources = [
+ "blimp_client_picture_cache.cc",
+ "blimp_client_picture_cache.h",
+ "blimp_image_decoder.cc",
+ "blimp_image_decoder.h",
+ "blob_image_serialization_processor.cc",
+ "blob_image_serialization_processor.h",
+ "decoding_image_generator.cc",
+ "decoding_image_generator.h",
+ ]
+
+ deps = [
+ "//blimp/net",
+ "//third_party/libwebp",
+ ]
+
+ public_deps = [
+ "//base",
+ "//blimp/common",
+ "//blimp/common/proto",
+ "//cc",
+ "//skia",
+ ]
+}
+
+source_set("unit_tests") {
+ visibility = [ "//blimp/client/core:unit_tests" ]
+
+ testonly = true
+
+ sources = [
+ "blimp_client_picture_cache_unittest.cc",
+ ]
+
+ deps = [
+ ":compositor",
+ "//blimp/test:support",
+ "//skia",
+ "//testing/gtest",
+ ]
+}
« 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