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

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

Issue 1535833002: Delete CC. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-5
Patch Set: rebase Created 4 years, 11 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
« no previous file with comments | « cc/scheduler/scheduler_unittest.cc ('k') | cc/surfaces/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("surface_id") {
6 sources = [
7 "surface_id.h",
8 ]
9
10 deps = [
11 "//base",
12 ]
13 }
14
15 component("surfaces") {
16 output_name = "cc_surfaces"
17 sources = [
18 "display.cc",
19 "display.h",
20 "display_client.h",
21 "onscreen_display_client.cc",
22 "onscreen_display_client.h",
23 "surface.cc",
24 "surface.h",
25 "surface_aggregator.cc",
26 "surface_aggregator.h",
27 "surface_display_output_surface.cc",
28 "surface_display_output_surface.h",
29 "surface_factory.cc",
30 "surface_factory.h",
31 "surface_factory_client.h",
32 "surface_id_allocator.cc",
33 "surface_id_allocator.h",
34 "surface_manager.cc",
35 "surface_manager.h",
36 "surface_resource_holder.cc",
37 "surface_resource_holder.h",
38 "surfaces_export.h",
39 ]
40
41 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ]
42
43 deps = [
44 ":surface_id",
45 "//base",
46 "//base/third_party/dynamic_annotations",
47 "//cc",
48 "//skia",
49 "//ui/events:events_base",
50 "//ui/gfx",
51 "//ui/gfx/geometry",
52 ]
53
54 if (is_android && !is_debug) {
55 configs -= [ "//build/config/compiler:optimize" ]
56 configs += [ "//build/config/compiler:optimize_max" ]
57 }
58 }
OLDNEW
« no previous file with comments | « cc/scheduler/scheduler_unittest.cc ('k') | cc/surfaces/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698