| 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 25 matching lines...) Expand all Loading... |
| 36 testonly = true | 36 testonly = true |
| 37 resource_dirs = [ "java/res" ] | 37 resource_dirs = [ "java/res" ] |
| 38 custom_package = "org.chromium.content_shell" | 38 custom_package = "org.chromium.content_shell" |
| 39 } | 39 } |
| 40 | 40 |
| 41 android_library("content_shell_java") { | 41 android_library("content_shell_java") { |
| 42 testonly = true | 42 testonly = true |
| 43 deps = [ | 43 deps = [ |
| 44 ":content_shell_java_resources", | 44 ":content_shell_java_resources", |
| 45 "//base:base_java", | 45 "//base:base_java", |
| 46 "//base:base_java_test_support", |
| 46 "//content/public/android:content_java", | 47 "//content/public/android:content_java", |
| 47 "//device/geolocation:geolocation_java", | 48 "//device/geolocation:geolocation_java", |
| 48 "//media/base/android:media_java", | 49 "//media/base/android:media_java", |
| 49 "//media/capture/video/android:capture_java", | 50 "//media/capture/video/android:capture_java", |
| 50 "//mojo/public/java:system_java", | 51 "//mojo/public/java:system_java", |
| 51 "//net/android:net_java", | 52 "//net/android:net_java", |
| 52 "//ui/android:ui_java", | 53 "//ui/android:ui_java", |
| 53 ] | 54 ] |
| 54 java_files = [ | 55 java_files = [ |
| 55 "java/src/org/chromium/content_shell/Shell.java", | 56 "java/src/org/chromium/content_shell/Shell.java", |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 testonly = true | 257 testonly = true |
| 257 deps = [ | 258 deps = [ |
| 258 ":content_shell_java", | 259 ":content_shell_java", |
| 259 "//base:base_java", | 260 "//base:base_java", |
| 260 "//content/public/android:content_java", | 261 "//content/public/android:content_java", |
| 261 "//testing/android/native_test:native_test_java", | 262 "//testing/android/native_test:native_test_java", |
| 262 "//ui/android:ui_java", | 263 "//ui/android:ui_java", |
| 263 ] | 264 ] |
| 264 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 265 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
| 265 } | 266 } |
| OLD | NEW |