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_variables.gypi', | 10 'mojo_variables.gypi', |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 { | 209 { |
210 'target_name': 'mojo_jni_headers', | 210 'target_name': 'mojo_jni_headers', |
211 'type': 'none', | 211 'type': 'none', |
212 'dependencies': [ | 212 'dependencies': [ |
213 'mojo_java_set_jni_headers', | 213 'mojo_java_set_jni_headers', |
214 ], | 214 ], |
215 'sources': [ | 215 'sources': [ |
216 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', | 216 'android/javatests/src/org/chromium/mojo/MojoTestCase.java', |
217 'android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil
.java', | 217 'android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil
.java', |
218 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', | 218 'android/system/src/org/chromium/mojo/system/impl/CoreImpl.java', |
219 'services/native_viewport/android/src/org/chromium/mojo/PlatformView
portAndroid.java', | |
220 ], | 219 ], |
221 'variables': { | 220 'variables': { |
222 'jni_gen_package': 'mojo', | 221 'jni_gen_package': 'mojo', |
223 }, | 222 }, |
224 'includes': [ '../build/jni_generator.gypi' ], | 223 'includes': [ '../build/jni_generator.gypi' ], |
225 }, | 224 }, |
226 { | 225 { |
227 'target_name': 'libmojo_system_java', | 226 'target_name': 'libmojo_system_java', |
228 'type': 'static_library', | 227 'type': 'static_library', |
229 'dependencies': [ | 228 'dependencies': [ |
(...skipping 28 matching lines...) Expand all Loading... |
258 ], | 257 ], |
259 'variables': { | 258 'variables': { |
260 'java_in_dir': '<(DEPTH)/mojo/android/system', | 259 'java_in_dir': '<(DEPTH)/mojo/android/system', |
261 }, | 260 }, |
262 'includes': [ '../build/java.gypi' ], | 261 'includes': [ '../build/java.gypi' ], |
263 }, | 262 }, |
264 ] | 263 ] |
265 }] | 264 }] |
266 ] | 265 ] |
267 } | 266 } |
OLD | NEW |