| 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_overrides/v8.gni") | 7 import("//build_overrides/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") { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 testonly = true | 66 testonly = true |
| 67 input = "shell_apk/AndroidManifest.xml.jinja2" | 67 input = "shell_apk/AndroidManifest.xml.jinja2" |
| 68 output = content_shell_manifest | 68 output = content_shell_manifest |
| 69 } | 69 } |
| 70 | 70 |
| 71 android_resources("content_shell_apk_resources") { | 71 android_resources("content_shell_apk_resources") { |
| 72 testonly = true | 72 testonly = true |
| 73 resource_dirs = [ "shell_apk/res" ] | 73 resource_dirs = [ "shell_apk/res" ] |
| 74 deps = [ | 74 deps = [ |
| 75 ":content_shell_java_resources", | 75 ":content_shell_java_resources", |
| 76 ":content_shell_manifest", | |
| 77 ] | 76 ] |
| 78 android_manifest = content_shell_manifest | 77 android_manifest = content_shell_manifest |
| 78 android_manifest_dep = ":content_shell_manifest" |
| 79 } | 79 } |
| 80 | 80 |
| 81 android_library("content_shell_apk_java") { | 81 android_library("content_shell_apk_java") { |
| 82 testonly = true | 82 testonly = true |
| 83 deps = [ | 83 deps = [ |
| 84 ":content_shell_apk_resources", | 84 ":content_shell_apk_resources", |
| 85 ":content_shell_java", | 85 ":content_shell_java", |
| 86 "//base:base_java", | 86 "//base:base_java", |
| 87 "//content/public/android:content_java", | 87 "//content/public/android:content_java", |
| 88 "//media/capture/video/android:capture_java", | 88 "//media/capture/video/android:capture_java", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 jinja_template("chromium_linker_test_manifest") { | 169 jinja_template("chromium_linker_test_manifest") { |
| 170 testonly = true | 170 testonly = true |
| 171 input = "linker_test_apk/AndroidManifest.xml.jinja2" | 171 input = "linker_test_apk/AndroidManifest.xml.jinja2" |
| 172 output = chromium_linker_test_manifest | 172 output = chromium_linker_test_manifest |
| 173 } | 173 } |
| 174 | 174 |
| 175 android_resources("linker_resources") { | 175 android_resources("linker_resources") { |
| 176 testonly = true | 176 testonly = true |
| 177 resource_dirs = [ "linker_test_apk/res" ] | 177 resource_dirs = [ "linker_test_apk/res" ] |
| 178 android_manifest = chromium_linker_test_manifest | 178 android_manifest = chromium_linker_test_manifest |
| 179 deps = [ | 179 android_manifest_dep = ":chromium_linker_test_manifest" |
| 180 ":chromium_linker_test_manifest", | |
| 181 ] | |
| 182 } | 180 } |
| 183 | 181 |
| 184 # GYP: //content/content_tests.gypi:chromium_linker_test_apk | 182 # GYP: //content/content_tests.gypi:chromium_linker_test_apk |
| 185 android_apk("chromium_linker_test_apk") { | 183 android_apk("chromium_linker_test_apk") { |
| 186 testonly = true | 184 testonly = true |
| 187 deps = [ | 185 deps = [ |
| 188 ":content_shell_assets", | 186 ":content_shell_assets", |
| 189 ":content_shell_java", | 187 ":content_shell_java", |
| 190 ":linker_resources", | 188 ":linker_resources", |
| 191 "//base:base_java", | 189 "//base:base_java", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 testonly = true | 238 testonly = true |
| 241 deps = [ | 239 deps = [ |
| 242 ":content_shell_java", | 240 ":content_shell_java", |
| 243 "//base:base_java", | 241 "//base:base_java", |
| 244 "//content/public/android:content_java", | 242 "//content/public/android:content_java", |
| 245 "//testing/android/native_test:native_test_java", | 243 "//testing/android/native_test:native_test_java", |
| 246 "//ui/android:ui_java", | 244 "//ui/android:ui_java", |
| 247 ] | 245 ] |
| 248 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 246 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
| 249 } | 247 } |
| OLD | NEW |