| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'target_name': 'mojo_sample_app', | 8 'target_name': 'mojo_sample_app', |
| 9 'type': 'shared_library', | 9 'type': 'shared_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 }, | 230 }, |
| 231 { | 231 { |
| 232 'target_name': 'mojo_launcher_bindings', | 232 'target_name': 'mojo_launcher_bindings', |
| 233 'type': 'static_library', | 233 'type': 'static_library', |
| 234 'sources': [ | 234 'sources': [ |
| 235 'examples/launcher/launcher.mojom', | 235 'examples/launcher/launcher.mojom', |
| 236 ], | 236 ], |
| 237 'variables': { | 237 'variables': { |
| 238 'mojom_base_output_dir': 'mojo', | 238 'mojom_base_output_dir': 'mojo', |
| 239 }, | 239 }, |
| 240 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 240 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 241 'export_dependent_settings': [ | 241 'export_dependent_settings': [ |
| 242 'mojo_bindings', | 242 'mojo_bindings', |
| 243 'mojo_system', | 243 'mojo_system', |
| 244 ], | 244 ], |
| 245 'dependencies': [ | 245 'dependencies': [ |
| 246 'mojo_bindings', | 246 'mojo_bindings', |
| 247 'mojo_system', | 247 'mojo_system', |
| 248 ], | 248 ], |
| 249 }, | 249 }, |
| 250 { | 250 { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 281 }, | 281 }, |
| 282 { | 282 { |
| 283 'target_name': 'mojo_view_manager_bindings', | 283 'target_name': 'mojo_view_manager_bindings', |
| 284 'type': 'static_library', | 284 'type': 'static_library', |
| 285 'sources': [ | 285 'sources': [ |
| 286 'examples/view_manager/view_manager.mojom', | 286 'examples/view_manager/view_manager.mojom', |
| 287 ], | 287 ], |
| 288 'variables': { | 288 'variables': { |
| 289 'mojom_base_output_dir': 'mojo', | 289 'mojom_base_output_dir': 'mojo', |
| 290 }, | 290 }, |
| 291 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 291 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 292 'export_dependent_settings': [ | 292 'export_dependent_settings': [ |
| 293 'mojo_bindings', | 293 'mojo_bindings', |
| 294 'mojo_system', | 294 'mojo_system', |
| 295 ], | 295 ], |
| 296 'dependencies': [ | 296 'dependencies': [ |
| 297 'mojo_bindings', | 297 'mojo_bindings', |
| 298 'mojo_system', | 298 'mojo_system', |
| 299 ], | 299 ], |
| 300 }, | 300 }, |
| 301 { | 301 { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 320 'target_name': 'package_mojo_view_manager', | 320 'target_name': 'package_mojo_view_manager', |
| 321 'variables': { | 321 'variables': { |
| 322 'app_name': 'mojo_view_manager', | 322 'app_name': 'mojo_view_manager', |
| 323 }, | 323 }, |
| 324 'includes': [ 'build/package_app.gypi' ], | 324 'includes': [ 'build/package_app.gypi' ], |
| 325 }, | 325 }, |
| 326 ], | 326 ], |
| 327 }], | 327 }], |
| 328 ], | 328 ], |
| 329 } | 329 } |
| OLD | NEW |