| 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 | 7 |
| 8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", | 8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("../../content_jni.gypi") ], | 9 [ rebase_path("../../content_jni.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 "//content/public/common/screen_orientation_values.h", | 275 "//content/public/common/screen_orientation_values.h", |
| 276 "//content/public/common/speech_recognition_error.h", | 276 "//content/public/common/speech_recognition_error.h", |
| 277 "//content/public/common/top_controls_state.h", | 277 "//content/public/common/top_controls_state.h", |
| 278 ] | 278 ] |
| 279 } | 279 } |
| 280 | 280 |
| 281 generate_jar_jni("jar_jni") { | 281 generate_jar_jni("jar_jni") { |
| 282 jni_package = "content" | 282 jni_package = "content" |
| 283 classes = [ | 283 classes = [ |
| 284 "java/util/HashSet.class", | 284 "java/util/HashSet.class", |
| 285 "android/view/DragEvent.class", |
| 285 "android/view/MotionEvent.class", | 286 "android/view/MotionEvent.class", |
| 286 ] | 287 ] |
| 287 } | 288 } |
| 288 | 289 |
| 289 generate_jni("content_jni_headers") { | 290 generate_jni("content_jni_headers") { |
| 290 sources = rebase_path(content_jni_gypi_values.sources, "", "../..") | 291 sources = rebase_path(content_jni_gypi_values.sources, "", "../..") |
| 291 jni_package = "content" | 292 jni_package = "content" |
| 292 } | 293 } |
| 293 | 294 |
| 294 group("jni") { | 295 group("jni") { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "junit/src/org/chromium/content/browser/input/TextInputStateTest.java", | 393 "junit/src/org/chromium/content/browser/input/TextInputStateTest.java", |
| 393 "junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.ja
va", | 394 "junit/src/org/chromium/content/browser/input/ThreadedInputConnectionTest.ja
va", |
| 394 "junit/src/org/chromium/content/browser/BindingManagerImplTest.java", | 395 "junit/src/org/chromium/content/browser/BindingManagerImplTest.java", |
| 395 ] | 396 ] |
| 396 deps = [ | 397 deps = [ |
| 397 ":content_java", | 398 ":content_java", |
| 398 "//base:base_java", | 399 "//base:base_java", |
| 399 "//base:base_java_test_support", | 400 "//base:base_java_test_support", |
| 400 ] | 401 ] |
| 401 } | 402 } |
| OLD | NEW |