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

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

Issue 2506093003: CC Animation: Make cc/animation an independent GN component. (Closed)
Patch Set: Let test_support publicly depends on cc/animation. 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
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 = [ 6 visibility = [
7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. 7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964.
8 "//blimp/client/core/*", 8 "//blimp/client/core/*",
9 "//blimp/client/test/*", 9 "//blimp/client/test/*",
10 ] 10 ]
(...skipping 15 matching lines...) Expand all
26 "blob_image_serialization_processor.cc", 26 "blob_image_serialization_processor.cc",
27 "blob_image_serialization_processor.h", 27 "blob_image_serialization_processor.h",
28 "decoding_image_generator.cc", 28 "decoding_image_generator.cc",
29 "decoding_image_generator.h", 29 "decoding_image_generator.h",
30 ] 30 ]
31 31
32 deps = [ 32 deps = [
33 "//blimp/client/public:public_headers", 33 "//blimp/client/public:public_headers",
34 "//blimp/client/support/compositor", 34 "//blimp/client/support/compositor",
35 "//blimp/net", 35 "//blimp/net",
36 "//cc/animation",
36 "//cc/proto", 37 "//cc/proto",
37 "//cc/surfaces", 38 "//cc/surfaces",
38 "//gpu/command_buffer/client", 39 "//gpu/command_buffer/client",
39 "//third_party/libwebp", 40 "//third_party/libwebp",
40 "//ui/gl:gl", 41 "//ui/gl:gl",
41 ] 42 ]
42 43
43 public_deps = [ 44 public_deps = [
44 "//base", 45 "//base",
45 "//blimp/common", 46 "//blimp/common",
(...skipping 16 matching lines...) Expand all
62 ] 63 ]
63 64
64 deps = [ 65 deps = [
65 ":compositor", 66 ":compositor",
66 "//base", 67 "//base",
67 "//blimp/client/support", 68 "//blimp/client/support",
68 "//blimp/client/test", 69 "//blimp/client/test",
69 "//blimp/test:support", 70 "//blimp/test:support",
70 "//cc", 71 "//cc",
71 "//cc:test_support", 72 "//cc:test_support",
73 "//cc/animation",
72 "//cc/proto", 74 "//cc/proto",
73 "//cc/surfaces", 75 "//cc/surfaces",
74 "//skia", 76 "//skia",
75 "//testing/gtest", 77 "//testing/gtest",
76 "//ui/events:gesture_detection", 78 "//ui/events:gesture_detection",
77 ] 79 ]
78 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698