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

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

Issue 2174753004: arc:Integration test for Arc package Chrome sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@current
Patch Set: Created 4 years, 5 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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 if (enable_app_list) { 715 if (enable_app_list) {
716 deps += [ "//ui/app_list:test_support" ] 716 deps += [ "//ui/app_list:test_support" ]
717 } else { 717 } else {
718 sources -= [ 718 sources -= [
719 "../browser/sync/test/integration/sync_app_list_helper.cc", 719 "../browser/sync/test/integration/sync_app_list_helper.cc",
720 "../browser/sync/test/integration/sync_app_list_helper.h", 720 "../browser/sync/test/integration/sync_app_list_helper.h",
721 ] 721 ]
722 } 722 }
723 if (!is_chromeos) { 723 if (!is_chromeos) {
724 sources -= [ 724 sources -= [
725 "../browser/sync/test/integration/sync_arc_package_helper.cc",
726 "../browser/sync/test/integration/sync_arc_package_helper.h",
725 "../browser/sync/test/integration/wifi_credentials_helper.cc", 727 "../browser/sync/test/integration/wifi_credentials_helper.cc",
726 "../browser/sync/test/integration/wifi_credentials_helper.h", 728 "../browser/sync/test/integration/wifi_credentials_helper.h",
727 ] 729 ]
728 } 730 }
731 if (is_chromeos) {
732 deps += [
733 "//components/arc:arc_test_support",
734 "//components/user_manager:test_support",
735 ]
736 }
729 } 737 }
730 738
731 js2gtest("browser_tests_js_webui") { 739 js2gtest("browser_tests_js_webui") {
732 test_type = "webui" 740 test_type = "webui"
733 sources = rebase_path( 741 sources = rebase_path(
734 chrome_tests_gypi_values.chrome_browser_tests_webui_js_sources, 742 chrome_tests_gypi_values.chrome_browser_tests_webui_js_sources,
735 ".", 743 ".",
736 "//chrome") 744 "//chrome")
737 if (is_chrome_branded) { 745 if (is_chrome_branded) {
738 # crbug.com/230471 746 # crbug.com/230471
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 ] 1586 ]
1579 1587
1580 configs -= [ "//build/config/win:default_incremental_linking" ] 1588 configs -= [ "//build/config/win:default_incremental_linking" ]
1581 configs += 1589 configs +=
1582 [ "//build/config/win:default_large_module_incremental_linking" ] 1590 [ "//build/config/win:default_large_module_incremental_linking" ]
1583 } else { 1591 } else {
1584 sources -= [ "../app/chrome_version.rc.version" ] 1592 sources -= [ "../app/chrome_version.rc.version" ]
1585 } 1593 }
1586 if (!is_chromeos) { 1594 if (!is_chromeos) {
1587 sources -= [ 1595 sources -= [
1596 "../browser/sync/test/integration/single_client_arc_package_sync_test.cc ",
1588 "../browser/sync/test/integration/single_client_wifi_credentials_sync_te st.cc", 1597 "../browser/sync/test/integration/single_client_wifi_credentials_sync_te st.cc",
1598 "../browser/sync/test/integration/two_client_arc_package_sync_test.cc",
1589 "../browser/sync/test/integration/two_client_wifi_credentials_sync_test. cc", 1599 "../browser/sync/test/integration/two_client_wifi_credentials_sync_test. cc",
1590 ] 1600 ]
1591 } 1601 }
1592 1602
1593 if (toolkit_views) { 1603 if (toolkit_views) {
1594 deps += [ "//ui/views" ] 1604 deps += [ "//ui/views" ]
1595 } 1605 }
1596 if (enable_basic_printing || enable_print_preview) { 1606 if (enable_basic_printing || enable_print_preview) {
1597 deps += [ "//printing" ] 1607 deps += [ "//printing" ]
1598 } 1608 }
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
2468 if (is_android) { 2478 if (is_android) {
2469 android_library("unit_tests_java") { 2479 android_library("unit_tests_java") {
2470 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2480 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2471 deps = [ 2481 deps = [
2472 "//base:base_java", 2482 "//base:base_java",
2473 "//chrome/android:chrome_java", 2483 "//chrome/android:chrome_java",
2474 "//content/public/android:content_java", 2484 "//content/public/android:content_java",
2475 ] 2485 ]
2476 } 2486 }
2477 } 2487 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698