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

Side by Side Diff: mojo/mojo_public.gypi

Issue 403803003: Move mojo_bindings_java target to mojo.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //mojo/public/c/system 8 # GN version: //mojo/public/c/system
9 'target_name': 'mojo_system', 9 'target_name': 'mojo_system',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'targets': [ 206 'targets': [
207 { 207 {
208 # GN version: //mojo/public/java 208 # GN version: //mojo/public/java
209 'target_name': 'mojo_public_java', 209 'target_name': 'mojo_public_java',
210 'type': 'none', 210 'type': 'none',
211 'variables': { 211 'variables': {
212 'java_in_dir': 'public/java', 212 'java_in_dir': 'public/java',
213 }, 213 },
214 'includes': [ '../build/java.gypi' ], 214 'includes': [ '../build/java.gypi' ],
215 }, 215 },
216 {
217 # TODO(cmasone): Move out of mojo_public, as this is built from code
218 # outside mojo/public.
219 'target_name': 'mojo_bindings_java',
220 'type': 'none',
221 'variables': {
222 'java_in_dir': 'bindings/java',
223 },
224 'dependencies': [
225 'mojo_public_java',
226 ],
227 'includes': [ '../build/java.gypi' ],
228 },
229 ], 216 ],
230 }], 217 }],
231 ], 218 ],
232 } 219 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698