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

Side by Side Diff: build/protoc.gypi

Issue 11146005: Add support for generating jars from protos and add cacheinvalidation_java. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use javalib target name consistently. Created 8 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 | Annotate | Revision Log
« no previous file with comments | « build/java.gypi ('k') | build/protoc_java.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # This file is meant to be included into a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to invoke protoc in a consistent manner. 6 # to invoke protoc in a consistent manner. For Java-targets, see
7 # protoc_java.gypi.
7 # 8 #
8 # To use this, create a gyp target with the following form: 9 # To use this, create a gyp target with the following form:
9 # { 10 # {
10 # 'target_name': 'my_proto_lib', 11 # 'target_name': 'my_proto_lib',
11 # 'type': 'static_library', 12 # 'type': 'static_library',
12 # 'sources': [ 13 # 'sources': [
13 # 'foo.proto', 14 # 'foo.proto',
14 # 'bar.proto', 15 # 'bar.proto',
15 # ], 16 # ],
16 # 'variables': { 17 # 'variables': {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 }, 114 },
114 'export_dependent_settings': [ 115 'export_dependent_settings': [
115 # The generated headers reference headers within protobuf_lite, 116 # The generated headers reference headers within protobuf_lite,
116 # so dependencies must be able to find those headers too. 117 # so dependencies must be able to find those headers too.
117 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', 118 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite',
118 ], 119 ],
119 # This target exports a hard dependency because it generates header 120 # This target exports a hard dependency because it generates header
120 # files. 121 # files.
121 'hard_dependency': 1, 122 'hard_dependency': 1,
122 } 123 }
OLDNEW
« no previous file with comments | « build/java.gypi ('k') | build/protoc_java.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698