| 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 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 import("//third_party/icu/config.gni") | 8 import("//third_party/icu/config.gni") |
| 9 | 9 |
| 10 generate_jni("content_shell_jni_headers") { | 10 generate_jni("content_shell_jni_headers") { |
| 11 jni_package = "content/shell" | 11 jni_package = "content/shell" |
| 12 sources = [ | 12 sources = [ |
| 13 "browsertests_apk/src/org/chromium/content_browsertests_apk/ContentBrowserTe
stsActivity.java", |
| 13 "java/src/org/chromium/content_shell/Shell.java", | 14 "java/src/org/chromium/content_shell/Shell.java", |
| 14 "java/src/org/chromium/content_shell/ShellLayoutTestUtils.java", | 15 "java/src/org/chromium/content_shell/ShellLayoutTestUtils.java", |
| 15 "java/src/org/chromium/content_shell/ShellManager.java", | 16 "java/src/org/chromium/content_shell/ShellManager.java", |
| 16 "java/src/org/chromium/content_shell/ShellMojoTestUtils.java", | 17 "java/src/org/chromium/content_shell/ShellMojoTestUtils.java", |
| 17 ] | 18 ] |
| 18 } | 19 } |
| 19 | 20 |
| 20 shared_library("libcontent_shell_content_view") { | 21 shared_library("libcontent_shell_content_view") { |
| 21 testonly = true | 22 testonly = true |
| 22 deps = [ | 23 deps = [ |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 | 220 |
| 220 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers | 221 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers |
| 221 generate_jni("linker_test_jni_headers") { | 222 generate_jni("linker_test_jni_headers") { |
| 222 testonly = true | 223 testonly = true |
| 223 jni_package = "content/shell" | 224 jni_package = "content/shell" |
| 224 sources = [ | 225 sources = [ |
| 225 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", | 226 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", |
| 226 ] | 227 ] |
| 227 } | 228 } |
| 228 } | 229 } |
| OLD | NEW |