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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_public.gypi', | 10 'mojo_public.gypi', |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 ['OS=="android"', { | 502 ['OS=="android"', { |
503 'targets': [ | 503 'targets': [ |
504 { | 504 { |
505 'target_name': 'mojo_jni_headers', | 505 'target_name': 'mojo_jni_headers', |
506 'type': 'none', | 506 'type': 'none', |
507 'dependencies': [ | 507 'dependencies': [ |
508 'mojo_java_set_jni_headers', | 508 'mojo_java_set_jni_headers', |
509 ], | 509 ], |
510 'sources': [ | 510 'sources': [ |
511 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', | 511 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', |
| 512 'android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil
.java', |
512 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', | 513 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', |
513 'services/native_viewport/android/src/org/chromium/mojo/PlatformView
portAndroid.java', | 514 'services/native_viewport/android/src/org/chromium/mojo/PlatformView
portAndroid.java', |
514 'shell/android/apk/src/org/chromium/mojo_shell_apk/MojoMain.java', | 515 'shell/android/apk/src/org/chromium/mojo_shell_apk/MojoMain.java', |
515 ], | 516 ], |
516 'variables': { | 517 'variables': { |
517 'jni_gen_package': 'mojo', | 518 'jni_gen_package': 'mojo', |
518 }, | 519 }, |
519 'includes': [ '../build/jni_generator.gypi' ], | 520 'includes': [ '../build/jni_generator.gypi' ], |
520 }, | 521 }, |
521 { | 522 { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 ], | 557 ], |
557 }, | 558 }, |
558 { | 559 { |
559 'target_name': 'libmojo_java_unittest', | 560 'target_name': 'libmojo_java_unittest', |
560 'type': 'shared_library', | 561 'type': 'shared_library', |
561 'dependencies': [ | 562 'dependencies': [ |
562 '../base/base.gyp:base', | 563 '../base/base.gyp:base', |
563 '../base/base.gyp:test_support_base', | 564 '../base/base.gyp:test_support_base', |
564 'libmojo_system_java', | 565 'libmojo_system_java', |
565 'mojo_jni_headers', | 566 'mojo_jni_headers', |
| 567 'mojo_public_bindings_test_utils', |
566 ], | 568 ], |
567 'defines': [ | 569 'defines': [ |
568 'UNIT_TEST' # As exported from testing/gtest.gyp:gtest. | 570 'UNIT_TEST' # As exported from testing/gtest.gyp:gtest. |
569 ], | 571 ], |
570 'sources': [ | 572 'sources': [ |
571 'android/javatests/mojo_test_case.cc', | 573 'android/javatests/mojo_test_case.cc', |
572 'android/javatests/mojo_test_case.h', | 574 'android/javatests/mojo_test_case.h', |
573 'android/javatests/init_library.cc', | 575 'android/javatests/init_library.cc', |
| 576 'android/javatests/validation_test_util.cc', |
| 577 'android/javatests/validation_test_util.h', |
574 ], | 578 ], |
575 }, | 579 }, |
576 { | 580 { |
577 'target_name': 'mojo_test_apk', | 581 'target_name': 'mojo_test_apk', |
578 'type': 'none', | 582 'type': 'none', |
579 'dependencies': [ | 583 'dependencies': [ |
580 'mojo_bindings_java', | 584 'mojo_bindings_java', |
581 'mojo_public_test_interfaces', | 585 'mojo_public_test_interfaces', |
582 'mojo_system_java', | 586 'mojo_system_java', |
583 '../base/base.gyp:base_java_test_support', | 587 '../base/base.gyp:base_java_test_support', |
(...skipping 29 matching lines...) Expand all Loading... |
613 'mojo_js_unittests.isolate', | 617 'mojo_js_unittests.isolate', |
614 ], | 618 ], |
615 'sources': [ | 619 'sources': [ |
616 'mojo_js_unittests.isolate', | 620 'mojo_js_unittests.isolate', |
617 ], | 621 ], |
618 }, | 622 }, |
619 ], | 623 ], |
620 }], | 624 }], |
621 ] | 625 ] |
622 } | 626 } |
OLD | NEW |