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

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

Issue 2263863002: Remove implementation of Panels on OSes other than ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR feedback Created 4 years, 4 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
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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 data_deps += [ "//components/nacl/loader:helper_nonsfi" ] 530 data_deps += [ "//components/nacl/loader:helper_nonsfi" ]
531 } 531 }
532 } 532 }
533 533
534 if (is_chrome_branded) { 534 if (is_chrome_branded) {
535 sources -= [ 535 sources -= [
536 # These tests are failing on official cros bots. crbug.com/431450. 536 # These tests are failing on official cros bots. crbug.com/431450.
537 "../browser/ui/views/bookmarks/bookmark_bar_view_test.cc", 537 "../browser/ui/views/bookmarks/bookmark_bar_view_test.cc",
538 ] 538 ]
539 } 539 }
540 } else {
541 # ChromeOS doesn't use panels, everybody else does.
542 sources += rebase_path(
543 chrome_tests_gypi_values.chrome_interactive_ui_test_panels_sources ,
544 ".",
545 "//chrome")
546
547 # TODO(tapted): Include on mac when views panels are ported.
548 if (toolkit_views && !is_mac) {
549 sources += rebase_path(
550 chrome_tests_gypi_values.chrome_interactive_ui_test_panels_views _sources,
551 ".",
552 "//chrome")
553 }
554 }
555
556 if (!is_linux) {
557 # Non-Linux platforms (Linux includes ChromeOS here).
558 sources += rebase_path(
559 chrome_tests_gypi_values.chrome_interactive_ui_test_non_linux_and_ chromeos_sources,
560 ".",
561 "//chrome")
562 } 540 }
563 541
564 if (is_win) { 542 if (is_win) {
565 sources += rebase_path( 543 sources += rebase_path(
566 chrome_tests_gypi_values.chrome_interactive_ui_test_win_sources, 544 chrome_tests_gypi_values.chrome_interactive_ui_test_win_sources,
567 ".", 545 ".",
568 "//chrome") 546 "//chrome")
569 deps += [ 547 deps += [
570 "//chrome:other_version", 548 "//chrome:other_version",
571 "//chrome/install_static:install_static_util", 549 "//chrome/install_static:install_static_util",
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 ".", 1186 ".",
1209 "//chrome") 1187 "//chrome")
1210 sources -= [ 1188 sources -= [
1211 "../../apps/load_and_launch_browsertest.cc", 1189 "../../apps/load_and_launch_browsertest.cc",
1212 "../browser/policy/policy_startup_browsertest.cc", 1190 "../browser/policy/policy_startup_browsertest.cc",
1213 1191
1214 # chromeos does not support profile list avatar menu 1192 # chromeos does not support profile list avatar menu
1215 "../browser/profiles/profile_list_desktop_browsertest.cc", 1193 "../browser/profiles/profile_list_desktop_browsertest.cc",
1216 "../browser/service_process/service_process_control_browsertest.cc", 1194 "../browser/service_process/service_process_control_browsertest.cc",
1217 1195
1218 # chromeos does not use cross-platform panels
1219 "../browser/ui/panels/panel_extension_browsertest.cc",
1220
1221 # inline login UI is disabled on chromeos 1196 # inline login UI is disabled on chromeos
1222 "../browser/ui/webui/signin/inline_login_ui_browsertest.cc", 1197 "../browser/ui/webui/signin/inline_login_ui_browsertest.cc",
1223 1198
1224 # chromeos does not use the desktop user manager 1199 # chromeos does not use the desktop user manager
1225 "../browser/ui/webui/signin/user_manager_ui_browsertest.cc", 1200 "../browser/ui/webui/signin/user_manager_ui_browsertest.cc",
1226 ] 1201 ]
1227 deps += [ 1202 deps += [
1228 "//chromeos/ime:gencode", 1203 "//chromeos/ime:gencode",
1229 "//components/arc:arc_test_support", 1204 "//components/arc:arc_test_support",
1230 "//components/user_manager:test_support", 1205 "//components/user_manager:test_support",
(...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after
2487 if (is_android) { 2462 if (is_android) {
2488 android_library("unit_tests_java") { 2463 android_library("unit_tests_java") {
2489 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2464 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2490 deps = [ 2465 deps = [
2491 "//base:base_java", 2466 "//base:base_java",
2492 "//chrome/android:chrome_java", 2467 "//chrome/android:chrome_java",
2493 "//content/public/android:content_java", 2468 "//content/public/android:content_java",
2494 ] 2469 ]
2495 } 2470 }
2496 } 2471 }
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/test/data/extensions/api_test/window_open/focus/test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698