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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 2185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2196 "//chrome") | 2196 "//chrome") |
2197 } | 2197 } |
2198 } | 2198 } |
2199 | 2199 |
2200 if (is_android) { | 2200 if (is_android) { |
2201 copy_ex("copy_unit_tests_apk_assets") { | 2201 copy_ex("copy_unit_tests_apk_assets") { |
2202 clear_dir = true | 2202 clear_dir = true |
2203 dest = "$root_out_dir/unit_tests_apk/assets" | 2203 dest = "$root_out_dir/unit_tests_apk/assets" |
2204 | 2204 |
2205 if (v8_use_external_startup_data) { | 2205 if (v8_use_external_startup_data) { |
2206 sources = [ | 2206 renaming_sources = v8_external_startup_data_renaming_sources |
2207 "$root_out_dir/natives_blob.bin", | 2207 renaming_destinations = v8_external_startup_data_renaming_destinations |
2208 "$root_out_dir/snapshot_blob.bin", | |
2209 ] | |
2210 deps = [ | 2208 deps = [ |
2211 "//v8", | 2209 "//v8", |
2212 ] | 2210 ] |
2213 } | 2211 } |
2214 } | 2212 } |
2215 | 2213 |
2216 android_library("unit_tests_java") { | 2214 android_library("unit_tests_java") { |
2217 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2215 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
2218 deps = [ | 2216 deps = [ |
2219 "//base:base_java", | 2217 "//base:base_java", |
2220 "//chrome/android:chrome_java", | 2218 "//chrome/android:chrome_java", |
2221 "//content/public/android:content_java", | 2219 "//content/public/android:content_java", |
2222 ] | 2220 ] |
2223 } | 2221 } |
2224 } | 2222 } |
OLD | NEW |