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

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

Issue 2924943003: Break ConsentProvider classes into own file (Closed)
Patch Set: Created 3 years, 6 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 4114 matching lines...) Expand 10 before | Expand all | Expand 10 after
4125 # target. 4125 # target.
4126 "//tools/json_schema_compiler/test:unit_tests", 4126 "//tools/json_schema_compiler/test:unit_tests",
4127 ] 4127 ]
4128 if (enable_service_discovery) { 4128 if (enable_service_discovery) {
4129 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ] 4129 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ]
4130 } 4130 }
4131 if (is_win) { 4131 if (is_win) {
4132 sources += 4132 sources +=
4133 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ] 4133 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ]
4134 } 4134 }
4135 if (!is_chromeos) { 4135 if (is_chromeos) {
4136 sources += [ "../browser/extensions/api/file_system/consent_provider_unitt est.cc" ]
4137 } else {
4136 sources += [ 4138 sources += [
4137 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc", 4139 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc",
4138 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc", 4140 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc",
4139 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc", 4141 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc",
4140 ] 4142 ]
4141 } 4143 }
4142 } 4144 }
4143 if (use_ash) { 4145 if (use_ash) {
4144 sources += [ 4146 sources += [
4145 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc", 4147 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc",
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
5149 } 5151 }
5150 5152
5151 if (is_win) { 5153 if (is_win) {
5152 loadable_module("conflicts_dll") { 5154 loadable_module("conflicts_dll") {
5153 testonly = true 5155 testonly = true
5154 sources = [ 5156 sources = [
5155 "conflicts/conflicts_dll.cc", 5157 "conflicts/conflicts_dll.cc",
5156 ] 5158 ]
5157 } 5159 }
5158 } 5160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698