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

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

Issue 1460503004: Add support for converting cc::Region to and from protobuf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add-more-conversions
Patch Set: Added a test for subtraction of overlapping rects Created 5 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 | « cc/playback/clip_path_display_item.cc ('k') | cc/proto/cc_conversions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 # Use a group here to allow external targets to depend on "cc/proto" instead of 7 # Use a group here to allow external targets to depend on "cc/proto" instead of
8 # cc/proto:cc_proto. We need a group because other component targets are named 8 # cc/proto:cc_proto. We need a group because other component targets are named
9 # "proto" which breaks component builds. A group doesn't have the same issue. 9 # "proto" which breaks component builds. A group doesn't have the same issue.
10 group("proto") { 10 group("proto") {
(...skipping 20 matching lines...) Expand all
31 # to include protos from other directories/targets (crbug.com/542423). 31 # to include protos from other directories/targets (crbug.com/542423).
32 "compositor_message.proto", 32 "compositor_message.proto",
33 "display_item.proto", 33 "display_item.proto",
34 "layer.proto", 34 "layer.proto",
35 "layer_position_constraint.proto", 35 "layer_position_constraint.proto",
36 "point.proto", 36 "point.proto",
37 "point3f.proto", 37 "point3f.proto",
38 "pointf.proto", 38 "pointf.proto",
39 "rect.proto", 39 "rect.proto",
40 "rectf.proto", 40 "rectf.proto",
41 "region.proto",
41 "scroll_offset.proto", 42 "scroll_offset.proto",
42 "size.proto", 43 "size.proto",
43 "sizef.proto", 44 "sizef.proto",
44 "skregion.proto", 45 "skregion.proto",
45 "skrrect.proto", 46 "skrrect.proto",
46 "skxfermode.proto", 47 "skxfermode.proto",
47 "transform.proto", 48 "transform.proto",
48 "vector2df.proto", 49 "vector2df.proto",
49 ] 50 ]
50 51
51 deps = [ 52 deps = [
52 "//third_party/protobuf:protobuf_lite", 53 "//third_party/protobuf:protobuf_lite",
53 ] 54 ]
54 55
55 cc_generator_options = "dllexport_decl=CC_PROTO_EXPORT:" 56 cc_generator_options = "dllexport_decl=CC_PROTO_EXPORT:"
56 cc_include = "cc/proto/cc_proto_export.h" 57 cc_include = "cc/proto/cc_proto_export.h"
57 58
58 defines = [ "CC_PROTO_IMPLEMENTATION" ] 59 defines = [ "CC_PROTO_IMPLEMENTATION" ]
59 60
60 # Warn if clang creates exit destructors. 61 # Warn if clang creates exit destructors.
61 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] 62 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
62 } 63 }
OLDNEW
« no previous file with comments | « cc/playback/clip_path_display_item.cc ('k') | cc/proto/cc_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698