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