| 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") | |
| 8 import("//third_party/icu/config.gni") | 7 import("//third_party/icu/config.gni") |
| 9 | 8 |
| 10 generate_jni("content_shell_jni_headers") { | 9 generate_jni("content_shell_jni_headers") { |
| 11 jni_package = "content/shell" | 10 jni_package = "content/shell" |
| 12 sources = [ | 11 sources = [ |
| 13 "java/src/org/chromium/content_shell/Shell.java", | 12 "java/src/org/chromium/content_shell/Shell.java", |
| 14 "java/src/org/chromium/content_shell/ShellLayoutTestUtils.java", | 13 "java/src/org/chromium/content_shell/ShellLayoutTestUtils.java", |
| 15 "java/src/org/chromium/content_shell/ShellManager.java", | 14 "java/src/org/chromium/content_shell/ShellManager.java", |
| 16 ] | 15 ] |
| 17 } | 16 } |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 testonly = true | 256 testonly = true |
| 258 deps = [ | 257 deps = [ |
| 259 ":content_shell_java", | 258 ":content_shell_java", |
| 260 "//base:base_java", | 259 "//base:base_java", |
| 261 "//content/public/android:content_java", | 260 "//content/public/android:content_java", |
| 262 "//testing/android/native_test:native_test_java", | 261 "//testing/android/native_test:native_test_java", |
| 263 "//ui/android:ui_java", | 262 "//ui/android:ui_java", |
| 264 ] | 263 ] |
| 265 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 264 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
| 266 } | 265 } |
| OLD | NEW |