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

Side by Side Diff: blimp/common/proto/BUILD.gn

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 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 | « blimp/common/mandatory_callback_unittest.cc ('k') | blimp/common/proto/blimp_message.proto » ('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 group("proto") {
8 public_deps = [
9 ":blimp_proto",
10 "//third_party/protobuf:protobuf_lite",
11 ]
12 }
13
14 component("blimp_proto") {
15 # Only expose the target to the "proto" group.
16 visibility = [ ":proto" ]
17
18 public_deps = [
19 ":proto_internal",
20 ]
21 }
22
23 proto_library("proto_internal") {
24 # Only expose the target to the "blimp_proto" target.
25 visibility = [ ":blimp_proto" ]
26
27 sources = [
28 "blimp_message.proto",
29 "blob_cache.proto",
30 "blob_channel.proto",
31 "common.proto",
32 "compositor.proto",
33 "geolocation.proto",
34 "helium.proto",
35 "ime.proto",
36 "input.proto",
37 "navigation.proto",
38 "protocol_control.proto",
39 "render_widget.proto",
40 "settings.proto",
41 "tab_control.proto",
42 ]
43
44 cc_generator_options = "dllexport_decl=BLIMP_PROTO_EXPORT:"
45 cc_include = "blimp/common/proto/blimp_proto_export.h"
46 component_build_force_source_set = true
47
48 defines = [ "BLIMP_PROTO_IMPLEMENTATION" ]
49
50 # Warn if clang creates exit destructors
51 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
52 }
OLDNEW
« no previous file with comments | « blimp/common/mandatory_callback_unittest.cc ('k') | blimp/common/proto/blimp_message.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698