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

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 feedback, updating tests, moving functions to a static class 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 1616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 ] 1627 ]
1628 } 1628 }
1629 1629
1630 if (is_android) { 1630 if (is_android) {
1631 sources += rebase_path( 1631 sources += rebase_path(
1632 chrome_tests_unit_gypi_values.chrome_unit_tests_offline_pages_source s, 1632 chrome_tests_unit_gypi_values.chrome_unit_tests_offline_pages_source s,
1633 ".", 1633 ".",
1634 "//chrome") 1634 "//chrome")
1635 deps += [ 1635 deps += [
1636 ":unit_tests_java", 1636 ":unit_tests_java",
1637 "//components/offline_pages:test_support",
1637 "//v8:v8_external_startup_data_assets", 1638 "//v8:v8_external_startup_data_assets",
1638 ] 1639 ]
1639 deps -= [ "//third_party/libaddressinput" ] 1640 deps -= [ "//third_party/libaddressinput" ]
1640 1641
1641 android_manifest = 1642 android_manifest =
1642 "//chrome/test/android/unit_tests_apk/AndroidManifest.xml" 1643 "//chrome/test/android/unit_tests_apk/AndroidManifest.xml"
1643 isolate_file = "../unit_tests.isolate" 1644 isolate_file = "../unit_tests.isolate"
1644 1645
1645 # Some android targets still depend on --gc-sections to link. 1646 # Some android targets still depend on --gc-sections to link.
1646 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). 1647 # TODO: remove --gc-sections for Debug builds (crbug.com/159847).
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
2228 if (is_android) { 2229 if (is_android) {
2229 android_library("unit_tests_java") { 2230 android_library("unit_tests_java") {
2230 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" 2231 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src"
2231 deps = [ 2232 deps = [
2232 "//base:base_java", 2233 "//base:base_java",
2233 "//chrome/android:chrome_java", 2234 "//chrome/android:chrome_java",
2234 "//content/public/android:content_java", 2235 "//content/public/android:content_java",
2235 ] 2236 ]
2236 } 2237 }
2237 } 2238 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698