| 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 'mojo_js_bindings', | 29 'mojo_js_bindings', |
| 29 'mojo_js_bindings_unittests', | 30 'mojo_js_bindings_unittests', |
| 30 'mojo_bindings', | 31 'mojo_bindings', |
| 31 ], | 32 ], |
| 32 }, | 33 }, |
| 33 { | 34 { |
| 34 'target_name': 'mojo_public_test_support', | 35 'target_name': 'mojo_public_test_support', |
| 35 'type': 'static_library', | 36 'type': 'static_library', |
| 36 'dependencies': [ | 37 'dependencies': [ |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 'public/bindings/lib/connector.h', | 342 'public/bindings/lib/connector.h', |
| 342 'public/bindings/lib/message.cc', | 343 'public/bindings/lib/message.cc', |
| 343 'public/bindings/lib/message.h', | 344 'public/bindings/lib/message.h', |
| 344 'public/bindings/lib/message_builder.cc', | 345 'public/bindings/lib/message_builder.cc', |
| 345 'public/bindings/lib/message_builder.h', | 346 'public/bindings/lib/message_builder.h', |
| 346 'public/bindings/lib/message_queue.cc', | 347 'public/bindings/lib/message_queue.cc', |
| 347 'public/bindings/lib/message_queue.h', | 348 'public/bindings/lib/message_queue.h', |
| 348 ], | 349 ], |
| 349 }, | 350 }, |
| 350 { | 351 { |
| 352 'target_name': 'mojom_test', |
| 353 'type': 'executable', |
| 354 'sources': [ |
| 355 'public/bindings/sample/sample_test.cc', |
| 356 'public/bindings/sample/sample_service.mojom', |
| 357 ], |
| 358 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 359 'dependencies': [ |
| 360 '../testing/gtest.gyp:gtest', |
| 361 'mojo_bindings', |
| 362 'mojo_run_all_unittests', |
| 363 'mojo_system', |
| 364 ], |
| 365 }, |
| 366 { |
| 351 'target_name': 'mojo_bindings_test', | 367 'target_name': 'mojo_bindings_test', |
| 352 'type': 'executable', | 368 'type': 'executable', |
| 353 'include_dirs': [ | 369 'include_dirs': [ |
| 354 '..' | 370 '..', |
| 371 '<(DEPTH)/mojo/public/bindings/sample', |
| 355 ], | 372 ], |
| 356 'dependencies': [ | 373 'dependencies': [ |
| 357 '../testing/gtest.gyp:gtest', | 374 '../testing/gtest.gyp:gtest', |
| 358 'mojo_bindings', | 375 'mojo_bindings', |
| 359 'mojo_run_all_unittests', | 376 'mojo_run_all_unittests', |
| 360 'mojo_system', | 377 'mojo_system', |
| 361 ], | 378 ], |
| 362 'sources': [ | 379 'sources': [ |
| 363 'public/bindings/sample/generated/sample_service.cc', | 380 'public/bindings/sample/mojom/sample_service.cc', |
| 364 'public/bindings/sample/generated/sample_service.h', | 381 'public/bindings/sample/mojom/sample_service.h', |
| 365 'public/bindings/sample/generated/sample_service_internal.h', | 382 'public/bindings/sample/mojom/sample_service_internal.h', |
| 366 'public/bindings/sample/sample_test.cc', | 383 'public/bindings/sample/sample_test.cc', |
| 367 ], | 384 ], |
| 368 }, | 385 }, |
| 369 { | 386 { |
| 370 'target_name': 'mojo_js_bindings', | 387 'target_name': 'mojo_js_bindings', |
| 371 'type': 'static_library', | 388 'type': 'static_library', |
| 372 'include_dirs': [ | 389 'include_dirs': [ |
| 373 '..' | 390 '..' |
| 374 ], | 391 ], |
| 375 'dependencies': [ | 392 'dependencies': [ |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 532 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 516 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 533 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 517 'native_lib_target': 'libmojo_shell', | 534 'native_lib_target': 'libmojo_shell', |
| 518 }, | 535 }, |
| 519 'includes': [ '../build/java_apk.gypi' ], | 536 'includes': [ '../build/java_apk.gypi' ], |
| 520 } | 537 } |
| 521 ], | 538 ], |
| 522 }], | 539 }], |
| 523 ], | 540 ], |
| 524 } | 541 } |
| OLD | NEW |