| 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("//third_party/icu/config.gni") | 7 import("//third_party/icu/config.gni") |
| 8 | 8 |
| 9 generate_jni("content_shell_jni_headers") { | 9 generate_jni("content_shell_jni_headers") { |
| 10 jni_package = "content/shell" | 10 jni_package = "content/shell" |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 ":$_linker_test_apk_target_name", | 229 ":$_linker_test_apk_target_name", |
| 230 ":$_linker_test_apk_test_runner_target_name", | 230 ":$_linker_test_apk_test_runner_target_name", |
| 231 ] | 231 ] |
| 232 } | 232 } |
| 233 | 233 |
| 234 shared_library("linker_test") { | 234 shared_library("linker_test") { |
| 235 testonly = true | 235 testonly = true |
| 236 sources = [ | 236 sources = [ |
| 237 "linker_test_apk/chromium_linker_test_android.cc", | 237 "linker_test_apk/chromium_linker_test_android.cc", |
| 238 "linker_test_apk/chromium_linker_test_linker_tests.cc", | 238 "linker_test_apk/chromium_linker_test_linker_tests.cc", |
| 239 "linker_test_apk/chromium_linker_test_linker_tests.h", |
| 239 ] | 240 ] |
| 240 | 241 |
| 241 deps = [ | 242 deps = [ |
| 242 ":linker_test_jni_headers", | 243 ":linker_test_jni_headers", |
| 243 "//build/config/sanitizers:deps", | 244 "//build/config/sanitizers:deps", |
| 244 "//content/shell:content_shell_lib", | 245 "//content/shell:content_shell_lib", |
| 245 | 246 |
| 246 # Required to include "content/public/browser/android/compositor.h" | 247 # Required to include "content/public/browser/android/compositor.h" |
| 247 # in chromium_linker_test_android.cc :-( | 248 # in chromium_linker_test_android.cc :-( |
| 248 "//skia", | 249 "//skia", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 263 testonly = true | 264 testonly = true |
| 264 deps = [ | 265 deps = [ |
| 265 ":content_shell_java", | 266 ":content_shell_java", |
| 266 "//base:base_java", | 267 "//base:base_java", |
| 267 "//content/public/android:content_java", | 268 "//content/public/android:content_java", |
| 268 "//testing/android/native_test:native_test_java", | 269 "//testing/android/native_test:native_test_java", |
| 269 "//ui/android:ui_java", | 270 "//ui/android:ui_java", |
| 270 ] | 271 ] |
| 271 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 272 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
| 272 } | 273 } |
| OLD | NEW |