Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(645)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1521193002: [Offline pages] Refactor URL conversions from TabAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing CR feedback Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 ] 1663 ]
1664 } 1664 }
1665 1665
1666 if (is_android) { 1666 if (is_android) {
1667 sources += rebase_path( 1667 sources += rebase_path(
1668 chrome_tests_unit_gypi_values.chrome_unit_tests_offline_pages_source s, 1668 chrome_tests_unit_gypi_values.chrome_unit_tests_offline_pages_source s,
1669 ".", 1669 ".",
1670 "//chrome") 1670 "//chrome")
1671 deps += [ 1671 deps += [
1672 ":unit_tests_java", 1672 ":unit_tests_java",
1673 "//components/offline_pages:test_support",
1673 "//v8:v8_external_startup_data_assets", 1674 "//v8:v8_external_startup_data_assets",
1674 ] 1675 ]
1675 deps -= [ "//third_party/libaddressinput" ] 1676 deps -= [ "//third_party/libaddressinput" ]
1676 1677
1677 android_manifest = 1678 android_manifest =
1678 "//chrome/test/android/unit_tests_apk/AndroidManifest.xml" 1679 "//chrome/test/android/unit_tests_apk/AndroidManifest.xml"
1679 isolate_file = "../unit_tests.isolate" 1680 isolate_file = "../unit_tests.isolate"
1680 1681
1681 # Some android targets still depend on --gc-sections to link. 1682 # Some android targets still depend on --gc-sections to link.
1682 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). 1683 # TODO: remove --gc-sections for Debug builds (crbug.com/159847).
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
2264 if (is_android) { 2265 if (is_android) {
2265 android_library("unit_tests_java") { 2266 android_library("unit_tests_java") {
2266 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" 2267 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src"
2267 deps = [ 2268 deps = [
2268 "//base:base_java", 2269 "//base:base_java",
2269 "//chrome/android:chrome_java", 2270 "//chrome/android:chrome_java",
2270 "//content/public/android:content_java", 2271 "//content/public/android:content_java",
2271 ] 2272 ]
2272 } 2273 }
2273 } 2274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698