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

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

Issue 2274323002: Expose Blimp dependencies to the embedder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@khushal_baseline_1
Patch Set: Created 4 years, 4 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("compositor") { 5 source_set("compositor") {
6 visibility = [ "//blimp/client/*" ] 6 visibility = [ "//blimp/client/*" ]
7 7
8 sources = [ 8 sources = [
9 "blimp_client_picture_cache.cc", 9 "blimp_client_picture_cache.cc",
10 "blimp_client_picture_cache.h", 10 "blimp_client_picture_cache.h",
11 "blimp_compositor_dependencies.h",
12 "blimp_compositor_dependencies_impl.cc",
13 "blimp_compositor_dependencies_impl.h",
11 "blimp_image_decoder.cc", 14 "blimp_image_decoder.cc",
12 "blimp_image_decoder.h", 15 "blimp_image_decoder.h",
13 "blob_image_serialization_processor.cc", 16 "blob_image_serialization_processor.cc",
14 "blob_image_serialization_processor.h", 17 "blob_image_serialization_processor.h",
15 "decoding_image_generator.cc", 18 "decoding_image_generator.cc",
16 "decoding_image_generator.h", 19 "decoding_image_generator.h",
17 ] 20 ]
18 21
19 deps = [ 22 deps = [
20 "//blimp/net", 23 "//blimp/net",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "blimp_client_picture_cache_unittest.cc", 55 "blimp_client_picture_cache_unittest.cc",
53 ] 56 ]
54 57
55 deps = [ 58 deps = [
56 ":compositor", 59 ":compositor",
57 "//blimp/test:support", 60 "//blimp/test:support",
58 "//skia", 61 "//skia",
59 "//testing/gtest", 62 "//testing/gtest",
60 ] 63 ]
61 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698