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 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 'sources': [ | 786 'sources': [ |
787 'cc/context_provider_mojo.cc', | 787 'cc/context_provider_mojo.cc', |
788 'cc/context_provider_mojo.h', | 788 'cc/context_provider_mojo.h', |
789 ], | 789 ], |
790 }, | 790 }, |
791 ], | 791 ], |
792 'conditions': [ | 792 'conditions': [ |
793 ['OS=="android"', { | 793 ['OS=="android"', { |
794 'targets': [ | 794 'targets': [ |
795 { | 795 { |
| 796 'target_name': 'mojo_bindings_java', |
| 797 'type': 'none', |
| 798 'variables': { |
| 799 'java_in_dir': 'bindings/java', |
| 800 }, |
| 801 'dependencies': [ |
| 802 'mojo_public_java', |
| 803 ], |
| 804 'includes': [ '../build/java.gypi' ], |
| 805 }, |
| 806 { |
796 'target_name': 'mojo_jni_headers', | 807 'target_name': 'mojo_jni_headers', |
797 'type': 'none', | 808 'type': 'none', |
798 'dependencies': [ | 809 'dependencies': [ |
799 'mojo_java_set_jni_headers', | 810 'mojo_java_set_jni_headers', |
800 ], | 811 ], |
801 'sources': [ | 812 'sources': [ |
802 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', | 813 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', |
803 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', | 814 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', |
804 'services/native_viewport/android/src/org/chromium/mojo/NativeViewpo
rtAndroid.java', | 815 'services/native_viewport/android/src/org/chromium/mojo/NativeViewpo
rtAndroid.java', |
805 'shell/android/apk/src/org/chromium/mojo_shell_apk/MojoMain.java', | 816 'shell/android/apk/src/org/chromium/mojo_shell_apk/MojoMain.java', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 'views/views_init_internal.h', | 1065 'views/views_init_internal.h', |
1055 ], | 1066 ], |
1056 'defines': [ | 1067 'defines': [ |
1057 'MOJO_VIEWS_IMPLEMENTATION', | 1068 'MOJO_VIEWS_IMPLEMENTATION', |
1058 ], | 1069 ], |
1059 }, | 1070 }, |
1060 ], | 1071 ], |
1061 }], | 1072 }], |
1062 ], | 1073 ], |
1063 } | 1074 } |
OLD | NEW |