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 { | |
807 'target_name': 'mojo_jni_headers', | 796 'target_name': 'mojo_jni_headers', |
808 'type': 'none', | 797 'type': 'none', |
809 'dependencies': [ | 798 'dependencies': [ |
810 'mojo_java_set_jni_headers', | 799 'mojo_java_set_jni_headers', |
811 ], | 800 ], |
812 'sources': [ | 801 'sources': [ |
813 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', | 802 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', |
814 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', | 803 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', |
815 'services/native_viewport/android/src/org/chromium/mojo/NativeViewpo
rtAndroid.java', | 804 'services/native_viewport/android/src/org/chromium/mojo/NativeViewpo
rtAndroid.java', |
816 'shell/android/apk/src/org/chromium/mojo_shell_apk/MojoMain.java', | 805 'shell/android/apk/src/org/chromium/mojo_shell_apk/MojoMain.java', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 'views/views_init_internal.h', | 1054 'views/views_init_internal.h', |
1066 ], | 1055 ], |
1067 'defines': [ | 1056 'defines': [ |
1068 'MOJO_VIEWS_IMPLEMENTATION', | 1057 'MOJO_VIEWS_IMPLEMENTATION', |
1069 ], | 1058 ], |
1070 }, | 1059 }, |
1071 ], | 1060 ], |
1072 }], | 1061 }], |
1073 ], | 1062 ], |
1074 } | 1063 } |
OLD | NEW |