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

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

Issue 2704313002: Remove gcdPrivate API code. (Closed)
Patch Set: Remove gcdPrivate API code. Created 3 years, 10 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/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2631 matching lines...) Expand 10 before | Expand all | Expand 10 after
2642 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc" , 2642 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc" ,
2643 ] 2643 ]
2644 } 2644 }
2645 if (!enable_print_preview || is_chromeos) { 2645 if (!enable_print_preview || is_chromeos) {
2646 sources -= [ 2646 sources -= [
2647 # Not intended to run on ChromeOS. 2647 # Not intended to run on ChromeOS.
2648 "../browser/printing/cloud_print/test/cloud_print_proxy_process_browsert est.cc", 2648 "../browser/printing/cloud_print/test/cloud_print_proxy_process_browsert est.cc",
2649 ] 2649 ]
2650 } 2650 }
2651 if (enable_mdns) { 2651 if (enable_mdns) {
2652 sources += [ 2652 sources += [ "../browser/ui/webui/local_discovery/local_discovery_ui_brows ertest.cc" ]
2653 "../browser/extensions/api/gcd_private/gcd_private_apitest.cc",
2654 "../browser/ui/webui/local_discovery/local_discovery_ui_browsertest.cc",
2655 ]
2656 } 2653 }
2657 if (use_brlapi) { 2654 if (use_brlapi) {
2658 deps += [ "//build/linux/libbrlapi" ] 2655 deps += [ "//build/linux/libbrlapi" ]
2659 } else { 2656 } else {
2660 sources -= [ "../browser/extensions/api/braille_display_private/braille_di splay_private_apitest.cc" ] 2657 sources -= [ "../browser/extensions/api/braille_display_private/braille_di splay_private_apitest.cc" ]
2661 } 2658 }
2662 if (is_chrome_branded && safe_browsing_mode == 1 && !is_mac) { 2659 if (is_chrome_branded && safe_browsing_mode == 1 && !is_mac) {
2663 sources -= [ 2660 sources -= [
2664 # These tests depend on single process mode, which is disabled in 2661 # These tests depend on single process mode, which is disabled in
2665 # official builds. 2662 # official builds.
(...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after
4145 "//extensions:extensions_resources", 4142 "//extensions:extensions_resources",
4146 "//extensions/strings", 4143 "//extensions/strings",
4147 "//media/cast:test_support", 4144 "//media/cast:test_support",
4148 4145
4149 # This will add all of the unit tests for the schema compiler to this 4146 # This will add all of the unit tests for the schema compiler to this
4150 # target. 4147 # target.
4151 "//tools/json_schema_compiler/test:unit_tests", 4148 "//tools/json_schema_compiler/test:unit_tests",
4152 ] 4149 ]
4153 if (enable_service_discovery) { 4150 if (enable_service_discovery) {
4154 sources += [ 4151 sources += [
4155 "../browser/extensions/api/gcd_private/privet_v3_context_getter_unittest .cc",
4156 "../browser/extensions/api/gcd_private/privet_v3_session_unittest.cc",
4157 "../browser/extensions/api/mdns/dns_sd_registry_unittest.cc", 4152 "../browser/extensions/api/mdns/dns_sd_registry_unittest.cc",
4158 "../browser/extensions/api/mdns/mdns_api_unittest.cc", 4153 "../browser/extensions/api/mdns/mdns_api_unittest.cc",
4159 ] 4154 ]
4160 } 4155 }
4161 if (!is_chromeos) { 4156 if (!is_chromeos) {
4162 sources += [ 4157 sources += [
4163 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc", 4158 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc",
4164 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc", 4159 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc",
4165 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc", 4160 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc",
4166 ] 4161 ]
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
5191 } 5186 }
5192 5187
5193 if (is_win) { 5188 if (is_win) {
5194 loadable_module("conflicts_dll") { 5189 loadable_module("conflicts_dll") {
5195 testonly = true 5190 testonly = true
5196 sources = [ 5191 sources = [
5197 "conflicts/conflicts_dll.cc", 5192 "conflicts/conflicts_dll.cc",
5198 ] 5193 ]
5199 } 5194 }
5200 } 5195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698