OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |