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

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

Issue 1861013004: AppListController refactoring part 3: Switching over to use AppListShower in Ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mus_chrome_delegates_ash_impl
Patch Set: Rebase. Created 4 years, 8 months 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 ] 580 ]
581 } 581 }
582 } # enable_notifications 582 } # enable_notifications
583 583
584 if (!use_aura || is_chromeos) { 584 if (!use_aura || is_chromeos) {
585 sources -= 585 sources -=
586 [ "../../ui/views/corewm/desktop_capture_controller_unittest.cc" ] 586 [ "../../ui/views/corewm/desktop_capture_controller_unittest.cc" ]
587 } 587 }
588 } 588 }
589 589
590 if (enable_app_list && use_ash) {
591 source_set("test_support_applist_ash") {
592 defines = []
593 testonly = true
594
595 sources = rebase_path(
596 chrome_tests_gypi_values.chrome_browser_app_list_ash_test_support_ sources,
597 ".",
598 "//chrome")
599
600 deps = [
601 "//chrome/browser/ui",
602 "//ui/app_list/shower:test_support",
603 ]
604 }
605 }
606
590 source_set("sync_integration_test_support") { 607 source_set("sync_integration_test_support") {
591 testonly = true 608 testonly = true
592 sources = rebase_path( 609 sources = rebase_path(
593 chrome_tests_gypi_values.test_support_sync_integration_sources, 610 chrome_tests_gypi_values.test_support_sync_integration_sources,
594 ".", 611 ".",
595 "//chrome") 612 "//chrome")
596 public_deps = [ 613 public_deps = [
597 "//chrome/browser", 614 "//chrome/browser",
598 ] 615 ]
599 deps = [ 616 deps = [
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 } 1028 }
1012 if (debug_devtools) { 1029 if (debug_devtools) {
1013 defines += [ "DEBUG_DEVTOOLS=1" ] 1030 defines += [ "DEBUG_DEVTOOLS=1" ]
1014 } 1031 }
1015 if (use_ash) { 1032 if (use_ash) {
1016 sources += 1033 sources +=
1017 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_ash_sources, 1034 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_ash_sources,
1018 ".", 1035 ".",
1019 "//chrome") 1036 "//chrome")
1020 deps += [ "//ash:test_support" ] 1037 deps += [ "//ash:test_support" ]
1038
1039 if (enable_app_list) {
1040 deps += [ ":test_support_applist_ash" ]
1041 }
1021 } 1042 }
1022 if (use_aura || toolkit_views) { 1043 if (use_aura || toolkit_views) {
1023 deps += [ "//ui/events:test_support" ] 1044 deps += [ "//ui/events:test_support" ]
1024 } 1045 }
1025 if (toolkit_views) { 1046 if (toolkit_views) {
1026 sources += rebase_path( 1047 sources += rebase_path(
1027 chrome_tests_gypi_values.chrome_browser_tests_views_sources, 1048 chrome_tests_gypi_values.chrome_browser_tests_views_sources,
1028 ".", 1049 ".",
1029 "//chrome") 1050 "//chrome")
1030 deps += [ "//ui/views" ] 1051 deps += [ "//ui/views" ]
(...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after
2261 if (is_android) { 2282 if (is_android) {
2262 android_library("unit_tests_java") { 2283 android_library("unit_tests_java") {
2263 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2284 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2264 deps = [ 2285 deps = [
2265 "//base:base_java", 2286 "//base:base_java",
2266 "//chrome/android:chrome_java", 2287 "//chrome/android:chrome_java",
2267 "//content/public/android:content_java", 2288 "//content/public/android:content_java",
2268 ] 2289 ]
2269 } 2290 }
2270 } 2291 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698