| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 testonly = true | 81 testonly = true |
| 82 deps = [ | 82 deps = [ |
| 83 ":content_shell_apk_resources", | 83 ":content_shell_apk_resources", |
| 84 ":content_shell_java", | 84 ":content_shell_java", |
| 85 ":content_shell_manifest", | 85 ":content_shell_manifest", |
| 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", |
| 89 "//net/android:net_java", | 89 "//net/android:net_java", |
| 90 "//ui/android:ui_java", | 90 "//ui/android:ui_java", |
| 91 "//ui/platform_window/android:platform_window_java", |
| 91 ] | 92 ] |
| 92 | 93 |
| 93 # Supply manifest for linting. | 94 # Supply manifest for linting. |
| 94 android_manifest = content_shell_manifest | 95 android_manifest = content_shell_manifest |
| 95 | 96 |
| 96 java_files = [ | 97 java_files = [ |
| 97 "shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java", | 98 "shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java", |
| 98 "shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java", | 99 "shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java", |
| 99 ] | 100 ] |
| 100 } | 101 } |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 testonly = true | 236 testonly = true |
| 236 deps = [ | 237 deps = [ |
| 237 ":content_shell_java", | 238 ":content_shell_java", |
| 238 "//base:base_java", | 239 "//base:base_java", |
| 239 "//content/public/android:content_java", | 240 "//content/public/android:content_java", |
| 240 "//testing/android/native_test:native_test_java", | 241 "//testing/android/native_test:native_test_java", |
| 241 "//ui/android:ui_java", | 242 "//ui/android:ui_java", |
| 242 ] | 243 ] |
| 243 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 244 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
| 244 } | 245 } |
| OLD | NEW |