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

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

Issue 1770993002: wip: Refactoring Ash's AppListController, moving the bulk of the logic to chrome/browser/ui/ash/app… Base URL: https://chromium.googlesource.com/chromium/src.git@small_5_apps
Patch Set: AppListShower to new component: //ui/app_list/shower, GetViewDelegate() in GetViewDelegate(), test … 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') | ui/app_list/shower/BUILD.gn » ('j') | 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 ] 582 ]
583 } 583 }
584 } # enable_notifications 584 } # enable_notifications
585 585
586 if (!use_aura || is_chromeos) { 586 if (!use_aura || is_chromeos) {
587 sources -= 587 sources -=
588 [ "../../ui/views/corewm/desktop_capture_controller_unittest.cc" ] 588 [ "../../ui/views/corewm/desktop_capture_controller_unittest.cc" ]
589 } 589 }
590 } 590 }
591 591
592 if (enable_app_list && use_ash) {
593 source_set("test_support_applist_ash") {
594 defines = []
595 testonly = true
596
597 sources = rebase_path(
598 chrome_tests_gypi_values.chrome_browser_app_list_ash_test_support_ sources,
599 ".",
600 "//chrome")
601
602 deps = [
603 "//chrome/browser/ui",
604 "//ui/app_list/shower:test_support",
605 ]
606 }
607 }
608
592 source_set("sync_integration_test_support") { 609 source_set("sync_integration_test_support") {
593 testonly = true 610 testonly = true
594 sources = rebase_path( 611 sources = rebase_path(
595 chrome_tests_gypi_values.test_support_sync_integration_sources, 612 chrome_tests_gypi_values.test_support_sync_integration_sources,
596 ".", 613 ".",
597 "//chrome") 614 "//chrome")
598 public_deps = [ 615 public_deps = [
599 "//chrome/browser", 616 "//chrome/browser",
600 ] 617 ]
601 deps = [ 618 deps = [
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 } 1030 }
1014 if (debug_devtools) { 1031 if (debug_devtools) {
1015 defines += [ "DEBUG_DEVTOOLS=1" ] 1032 defines += [ "DEBUG_DEVTOOLS=1" ]
1016 } 1033 }
1017 if (use_ash) { 1034 if (use_ash) {
1018 sources += 1035 sources +=
1019 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_ash_sources, 1036 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_ash_sources,
1020 ".", 1037 ".",
1021 "//chrome") 1038 "//chrome")
1022 deps += [ "//ash:test_support" ] 1039 deps += [ "//ash:test_support" ]
1040
1041 if (enable_app_list) {
1042 deps += [ ":test_support_applist_ash" ]
1043 }
1023 } 1044 }
1024 if (use_aura || toolkit_views) { 1045 if (use_aura || toolkit_views) {
1025 deps += [ "//ui/events:test_support" ] 1046 deps += [ "//ui/events:test_support" ]
1026 } 1047 }
1027 if (toolkit_views) { 1048 if (toolkit_views) {
1028 sources += rebase_path( 1049 sources += rebase_path(
1029 chrome_tests_gypi_values.chrome_browser_tests_views_sources, 1050 chrome_tests_gypi_values.chrome_browser_tests_views_sources,
1030 ".", 1051 ".",
1031 "//chrome") 1052 "//chrome")
1032 deps += [ "//ui/views" ] 1053 deps += [ "//ui/views" ]
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after
2262 if (is_android) { 2283 if (is_android) {
2263 android_library("unit_tests_java") { 2284 android_library("unit_tests_java") {
2264 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2285 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2265 deps = [ 2286 deps = [
2266 "//base:base_java", 2287 "//base:base_java",
2267 "//chrome/android:chrome_java", 2288 "//chrome/android:chrome_java",
2268 "//content/public/android:content_java", 2289 "//content/public/android:content_java",
2269 ] 2290 ]
2270 } 2291 }
2271 } 2292 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | ui/app_list/shower/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698