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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 2527443002: Display Compositor: Allocate LocalFrameId in client. (Closed)
Patch Set: Updated 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//cc/cc.gni") 5 import("//cc/cc.gni")
6 6
7 cc_source_set("surface_id") { 7 cc_source_set("surface_id") {
8 sources = [ 8 sources = [
9 "frame_sink_id.h", 9 "frame_sink_id.h",
10 "local_frame_id.h", 10 "local_frame_id.h",
11 "surface_id.h", 11 "surface_id.h",
12 "surface_id_allocator.cc",
13 "surface_id_allocator.h",
12 "surface_sequence.h", 14 "surface_sequence.h",
13 "surface_sequence_generator.cc", 15 "surface_sequence_generator.cc",
14 "surface_sequence_generator.h", 16 "surface_sequence_generator.h",
15 ] 17 ]
16 18
17 deps = [ 19 deps = [
18 "//base", 20 "//base",
19 ] 21 ]
20 } 22 }
21 23
(...skipping 10 matching lines...) Expand all
32 "surface.cc", 34 "surface.cc",
33 "surface.h", 35 "surface.h",
34 "surface_aggregator.cc", 36 "surface_aggregator.cc",
35 "surface_aggregator.h", 37 "surface_aggregator.h",
36 "surface_factory.cc", 38 "surface_factory.cc",
37 "surface_factory.h", 39 "surface_factory.h",
38 "surface_factory_client.h", 40 "surface_factory_client.h",
39 "surface_hittest.cc", 41 "surface_hittest.cc",
40 "surface_hittest.h", 42 "surface_hittest.h",
41 "surface_hittest_delegate.h", 43 "surface_hittest_delegate.h",
42 "surface_id_allocator.cc",
43 "surface_id_allocator.h",
44 "surface_manager.cc", 44 "surface_manager.cc",
45 "surface_manager.h", 45 "surface_manager.h",
46 "surface_resource_holder.cc", 46 "surface_resource_holder.cc",
47 "surface_resource_holder.h", 47 "surface_resource_holder.h",
48 "surfaces_export.h", 48 "surfaces_export.h",
49 ] 49 ]
50 50
51 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] 51 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ]
52 52
53 public_deps = [ 53 public_deps = [
54 ":surface_id", 54 ":surface_id",
55 ] 55 ]
56 deps = [ 56 deps = [
57 "//base", 57 "//base",
58 "//base/third_party/dynamic_annotations", 58 "//base/third_party/dynamic_annotations",
59 "//cc", 59 "//cc",
60 "//gpu/command_buffer/client:gles2_interface", 60 "//gpu/command_buffer/client:gles2_interface",
61 "//gpu/command_buffer/common", 61 "//gpu/command_buffer/common",
62 "//skia", 62 "//skia",
63 "//ui/events:events_base", 63 "//ui/events:events_base",
64 "//ui/gfx", 64 "//ui/gfx",
65 "//ui/gfx/geometry", 65 "//ui/gfx/geometry",
66 ] 66 ]
67 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698