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

Side by Side Diff: mojo/mojo_public.gypi

Issue 407733006: Move mojo java bindings to mojo/public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Follow review 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') | mojo/public/BUILD.gn » ('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 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 ], 198 ],
199 'export_dependent_settings': [ 199 'export_dependent_settings': [
200 'mojo_service_provider_bindings', 200 'mojo_service_provider_bindings',
201 ], 201 ],
202 }, 202 },
203 ], 203 ],
204 'conditions': [ 204 'conditions': [
205 ['OS == "android"', { 205 ['OS == "android"', {
206 'targets': [ 206 'targets': [
207 { 207 {
208 # GN version: //mojo/public/java 208 # GN version: //mojo/public/java_system
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/system',
213 }, 213 },
214 'includes': [ '../build/java.gypi' ], 214 'includes': [ '../build/java.gypi' ],
215 }, 215 },
216 {
217 # GN version: //mojo/public/java_bindings
218 'target_name': 'mojo_bindings_java',
219 'type': 'none',
220 'variables': {
221 'java_in_dir': 'public/java/bindings',
222 },
223 'dependencies': [
224 'mojo_public_java',
225 ],
226 'includes': [ '../build/java.gypi' ],
227 },
216 ], 228 ],
217 }], 229 }],
218 ], 230 ],
219 } 231 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698