| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |