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

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

Issue 1394353002: Add Protobuf support in cc for gfx objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move deps to public_deps Created 5 years, 2 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/cc_tests.gyp ('k') | cc/proto/cc_proto_export.h » ('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 2015 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 import("//third_party/protobuf/proto_library.gni")
6
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
9 # "proto" which breaks component builds. A group doesn't have the same issue.
10 group("proto") {
11 public_deps = [
12 ":cc_proto",
13 ]
14 }
15
16 component("cc_proto") {
17 # Only expose the target to the "proto" group.
18 visibility = [ ":proto" ]
19
20 public_deps = [
21 ":proto_internal",
22 ]
23 }
24
25 proto_library("proto_internal") {
26 # Only expose the target to the "cc_proto" target.
27 visibility = [ ":cc_proto" ]
28
29 sources = [
30 # TODO(dtrainor): Move the ui/gfx related protos to ui/gfx/proto once it is
31 # possible to include protos from other directories/targets (see
32 # crbug.com/542423).
33 "point.proto",
34 "pointf.proto",
35 "rect.proto",
36 "rectf.proto",
37 "size.proto",
38 "sizef.proto",
39 "transform.proto",
40 ]
41
42 deps = [
43 "//third_party/protobuf:protobuf_lite",
44 ]
45
46 cc_generator_options = "dllexport_decl=CC_PROTO_EXPORT:"
47 cc_include = "cc/proto/cc_proto_export.h"
48
49 defines = [ "CC_PROTO_IMPLEMENTATION" ]
50
51 # Warn if clang creates exit destructors.
52 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
53 }
OLDNEW
« no previous file with comments | « cc/cc_tests.gyp ('k') | cc/proto/cc_proto_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698