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

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: Addressed more comments Created 4 years, 3 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.cc",
12 "blimp_compositor_dependencies.h",
11 "blimp_image_decoder.cc", 13 "blimp_image_decoder.cc",
12 "blimp_image_decoder.h", 14 "blimp_image_decoder.h",
13 "blimp_output_surface.h", 15 "blimp_output_surface.h",
14 "blob_image_serialization_processor.cc", 16 "blob_image_serialization_processor.cc",
15 "blob_image_serialization_processor.h", 17 "blob_image_serialization_processor.h",
16 "decoding_image_generator.cc", 18 "decoding_image_generator.cc",
17 "decoding_image_generator.h", 19 "decoding_image_generator.h",
18 "delegated_output_surface.cc", 20 "delegated_output_surface.cc",
19 "delegated_output_surface.h", 21 "delegated_output_surface.h",
20 ] 22 ]
(...skipping 23 matching lines...) Expand all
44 ] 46 ]
45 47
46 deps = [ 48 deps = [
47 ":compositor", 49 ":compositor",
48 "//blimp/test:support", 50 "//blimp/test:support",
49 "//cc:test_support", 51 "//cc:test_support",
50 "//skia", 52 "//skia",
51 "//testing/gtest", 53 "//testing/gtest",
52 ] 54 ]
53 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698