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

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

Issue 2520513002: Add DisplayCompositorTest. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | cc/surfaces/surface_manager.h » ('j') | services/ui/surfaces/display_compositor.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("surface_id") { 5 source_set("surface_id") {
6 sources = [ 6 sources = [
7 "frame_sink_id.h", 7 "frame_sink_id.h",
8 "local_frame_id.h", 8 "local_frame_id.h",
9 "surface_id.h", 9 "surface_id.h",
10 "surface_sequence.h", 10 "surface_sequence.h",
(...skipping 23 matching lines...) Expand all
34 "surface_factory.cc", 34 "surface_factory.cc",
35 "surface_factory.h", 35 "surface_factory.h",
36 "surface_factory_client.h", 36 "surface_factory_client.h",
37 "surface_hittest.cc", 37 "surface_hittest.cc",
38 "surface_hittest.h", 38 "surface_hittest.h",
39 "surface_hittest_delegate.h", 39 "surface_hittest_delegate.h",
40 "surface_id_allocator.cc", 40 "surface_id_allocator.cc",
41 "surface_id_allocator.h", 41 "surface_id_allocator.h",
42 "surface_manager.cc", 42 "surface_manager.cc",
43 "surface_manager.h", 43 "surface_manager.h",
44 "surface_reference_manager.h",
44 "surface_resource_holder.cc", 45 "surface_resource_holder.cc",
45 "surface_resource_holder.h", 46 "surface_resource_holder.h",
46 "surfaces_export.h", 47 "surfaces_export.h",
47 ] 48 ]
48 49
49 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] 50 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ]
50 51
51 public_deps = [ 52 public_deps = [
52 ":surface_id", 53 ":surface_id",
53 ] 54 ]
54 deps = [ 55 deps = [
55 "//base", 56 "//base",
56 "//base/third_party/dynamic_annotations", 57 "//base/third_party/dynamic_annotations",
57 "//cc", 58 "//cc",
58 "//gpu/command_buffer/client:gles2_interface", 59 "//gpu/command_buffer/client:gles2_interface",
59 "//gpu/command_buffer/common", 60 "//gpu/command_buffer/common",
60 "//skia", 61 "//skia",
61 "//ui/events:events_base", 62 "//ui/events:events_base",
62 "//ui/gfx", 63 "//ui/gfx",
63 "//ui/gfx/geometry", 64 "//ui/gfx/geometry",
64 ] 65 ]
65 66
66 if (is_android && !is_debug) { 67 if (is_android && !is_debug) {
67 configs -= [ "//build/config/compiler:default_optimization" ] 68 configs -= [ "//build/config/compiler:default_optimization" ]
68 configs += [ "//build/config/compiler:optimize_max" ] 69 configs += [ "//build/config/compiler:optimize_max" ]
69 } 70 }
70 } 71 }
OLDNEW
« no previous file with comments | « no previous file | cc/surfaces/surface_manager.h » ('j') | services/ui/surfaces/display_compositor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698