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

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: Rebase 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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 if (enable_app_list) { 716 if (enable_app_list) {
717 deps += [ "//ui/app_list:test_support" ] 717 deps += [ "//ui/app_list:test_support" ]
718 } else { 718 } else {
719 sources -= [ 719 sources -= [
720 "../browser/sync/test/integration/sync_app_list_helper.cc", 720 "../browser/sync/test/integration/sync_app_list_helper.cc",
721 "../browser/sync/test/integration/sync_app_list_helper.h", 721 "../browser/sync/test/integration/sync_app_list_helper.h",
722 ] 722 ]
723 } 723 }
724 if (!is_chromeos) { 724 if (!is_chromeos) {
725 sources -= [ 725 sources -= [
726 "../browser/sync/test/integration/sync_arc_package_helper.cc",
727 "../browser/sync/test/integration/sync_arc_package_helper.h",
726 "../browser/sync/test/integration/wifi_credentials_helper.cc", 728 "../browser/sync/test/integration/wifi_credentials_helper.cc",
727 "../browser/sync/test/integration/wifi_credentials_helper.h", 729 "../browser/sync/test/integration/wifi_credentials_helper.h",
728 ] 730 ]
729 } 731 }
732 if (is_chromeos) {
733 deps += [
734 "//components/arc:arc_test_support",
735 "//components/user_manager:test_support",
736 ]
737 }
730 } 738 }
731 739
732 js2gtest("browser_tests_js_webui") { 740 js2gtest("browser_tests_js_webui") {
733 test_type = "webui" 741 test_type = "webui"
734 sources = rebase_path( 742 sources = rebase_path(
735 chrome_tests_gypi_values.chrome_browser_tests_webui_js_sources, 743 chrome_tests_gypi_values.chrome_browser_tests_webui_js_sources,
736 ".", 744 ".",
737 "//chrome") 745 "//chrome")
738 if (is_chrome_branded) { 746 if (is_chrome_branded) {
739 # crbug.com/230471 747 # crbug.com/230471
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
1582 ] 1590 ]
1583 1591
1584 configs -= [ "//build/config/win:default_incremental_linking" ] 1592 configs -= [ "//build/config/win:default_incremental_linking" ]
1585 configs += 1593 configs +=
1586 [ "//build/config/win:default_large_module_incremental_linking" ] 1594 [ "//build/config/win:default_large_module_incremental_linking" ]
1587 } else { 1595 } else {
1588 sources -= [ "../app/chrome_version.rc.version" ] 1596 sources -= [ "../app/chrome_version.rc.version" ]
1589 } 1597 }
1590 if (!is_chromeos) { 1598 if (!is_chromeos) {
1591 sources -= [ 1599 sources -= [
1600 "../browser/sync/test/integration/single_client_arc_package_sync_test.cc ",
1592 "../browser/sync/test/integration/single_client_wifi_credentials_sync_te st.cc", 1601 "../browser/sync/test/integration/single_client_wifi_credentials_sync_te st.cc",
1602 "../browser/sync/test/integration/two_client_arc_package_sync_test.cc",
1593 "../browser/sync/test/integration/two_client_wifi_credentials_sync_test. cc", 1603 "../browser/sync/test/integration/two_client_wifi_credentials_sync_test. cc",
1594 ] 1604 ]
1595 } 1605 }
1596 1606
1597 if (toolkit_views) { 1607 if (toolkit_views) {
1598 deps += [ "//ui/views" ] 1608 deps += [ "//ui/views" ]
1599 } 1609 }
1600 if (enable_basic_printing || enable_print_preview) { 1610 if (enable_basic_printing || enable_print_preview) {
1601 deps += [ "//printing" ] 1611 deps += [ "//printing" ]
1602 } 1612 }
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
2473 if (is_android) { 2483 if (is_android) {
2474 android_library("unit_tests_java") { 2484 android_library("unit_tests_java") {
2475 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2485 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2476 deps = [ 2486 deps = [
2477 "//base:base_java", 2487 "//base:base_java",
2478 "//chrome/android:chrome_java", 2488 "//chrome/android:chrome_java",
2479 "//content/public/android:content_java", 2489 "//content/public/android:content_java",
2480 ] 2490 ]
2481 } 2491 }
2482 } 2492 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698