| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'mojo', | 11 'target_name': 'mojo', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 'mojo_common_lib', | 14 'mojo_common_lib', |
| 15 'mojo_common_unittests', | 15 'mojo_common_unittests', |
| 16 'mojo_public_test_support', | 16 'mojo_public_test_support', |
| 17 'mojo_public_unittests', | 17 'mojo_public_unittests', |
| 18 'mojo_public_perftests', | 18 'mojo_public_perftests', |
| 19 'mojo_system', | 19 'mojo_system', |
| 20 'mojo_system_unittests', | 20 'mojo_system_unittests', |
| 21 'mojo_shell_lib', | 21 'mojo_shell_lib', |
| 22 'mojo_shell', | 22 'mojo_shell', |
| 23 'mojo_utility', | 23 'mojo_utility', |
| 24 'mojo_js', | 24 'mojo_js', |
| 25 'sample_app', | 25 'sample_app', |
| 26 'mojo_bindings', | 26 'mojo_bindings', |
| 27 'mojom_test', |
| 27 'mojo_bindings_test', | 28 'mojo_bindings_test', |
| 28 'native_viewport', | 29 'native_viewport', |
| 29 ], | 30 ], |
| 30 }, | 31 }, |
| 31 { | 32 { |
| 32 'target_name': 'mojo_public_test_support', | 33 'target_name': 'mojo_public_test_support', |
| 33 'type': 'static_library', | 34 'type': 'static_library', |
| 34 'dependencies': [ | 35 'dependencies': [ |
| 35 '../base/base.gyp:base', | 36 '../base/base.gyp:base', |
| 36 '../testing/gtest.gyp:gtest', | 37 '../testing/gtest.gyp:gtest', |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 'public/bindings/lib/connector.h', | 317 'public/bindings/lib/connector.h', |
| 317 'public/bindings/lib/message.cc', | 318 'public/bindings/lib/message.cc', |
| 318 'public/bindings/lib/message.h', | 319 'public/bindings/lib/message.h', |
| 319 'public/bindings/lib/message_builder.cc', | 320 'public/bindings/lib/message_builder.cc', |
| 320 'public/bindings/lib/message_builder.h', | 321 'public/bindings/lib/message_builder.h', |
| 321 'public/bindings/lib/message_queue.cc', | 322 'public/bindings/lib/message_queue.cc', |
| 322 'public/bindings/lib/message_queue.h', | 323 'public/bindings/lib/message_queue.h', |
| 323 ], | 324 ], |
| 324 }, | 325 }, |
| 325 { | 326 { |
| 327 'target_name': 'mojom_test', |
| 328 'type': 'executable', |
| 329 'sources': [ |
| 330 'public/bindings/sample/sample_test.cc', |
| 331 'public/bindings/sample/sample_service.mojom', |
| 332 ], |
| 333 'includes': [ '../build/mojom_bindings_generator.gypi' ], |
| 334 'dependencies': [ |
| 335 'mojo_bindings', |
| 336 ], |
| 337 }, |
| 338 { |
| 326 'target_name': 'mojo_bindings_test', | 339 'target_name': 'mojo_bindings_test', |
| 327 'type': 'executable', | 340 'type': 'executable', |
| 328 'include_dirs': [ | 341 'include_dirs': [ |
| 329 '..' | 342 '..', |
| 343 '<(DEPTH)/mojo/public/bindings/sample', |
| 330 ], | 344 ], |
| 331 'dependencies': [ | 345 'dependencies': [ |
| 332 'mojo_bindings', | 346 'mojo_bindings', |
| 333 ], | 347 ], |
| 334 'sources': [ | 348 'sources': [ |
| 335 'public/bindings/sample/generated/sample_service.cc', | 349 'public/bindings/sample/mojom/sample_service.cc', |
| 336 'public/bindings/sample/generated/sample_service.h', | 350 'public/bindings/sample/mojom/sample_service.h', |
| 337 'public/bindings/sample/generated/sample_service_internal.h', | 351 'public/bindings/sample/mojom/sample_service_internal.h', |
| 338 'public/bindings/sample/sample_test.cc', | 352 'public/bindings/sample/sample_test.cc', |
| 339 ], | 353 ], |
| 340 }, | 354 }, |
| 341 { | 355 { |
| 342 'target_name': 'native_viewport', | 356 'target_name': 'native_viewport', |
| 343 'type': 'static_library', | 357 'type': 'static_library', |
| 344 'dependencies': [ | 358 'dependencies': [ |
| 345 '../base/base.gyp:base', | 359 '../base/base.gyp:base', |
| 346 '../gpu/gpu.gyp:command_buffer_service', | 360 '../gpu/gpu.gyp:command_buffer_service', |
| 347 '../gpu/gpu.gyp:gles2_implementation', | 361 '../gpu/gpu.gyp:gles2_implementation', |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 463 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 450 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 464 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 451 'native_lib_target': 'libmojo_shell', | 465 'native_lib_target': 'libmojo_shell', |
| 452 }, | 466 }, |
| 453 'includes': [ '../build/java_apk.gypi' ], | 467 'includes': [ '../build/java_apk.gypi' ], |
| 454 } | 468 } |
| 455 ], | 469 ], |
| 456 }], | 470 }], |
| 457 ], | 471 ], |
| 458 } | 472 } |
| OLD | NEW |