| OLD | NEW |
| 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 4153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4164 # This will add all of the unit tests for the schema compiler to this | 4164 # This will add all of the unit tests for the schema compiler to this |
| 4165 # target. | 4165 # target. |
| 4166 "//tools/json_schema_compiler/test:unit_tests", | 4166 "//tools/json_schema_compiler/test:unit_tests", |
| 4167 ] | 4167 ] |
| 4168 if (enable_service_discovery) { | 4168 if (enable_service_discovery) { |
| 4169 sources += [ | 4169 sources += [ |
| 4170 "../browser/extensions/api/mdns/dns_sd_registry_unittest.cc", | 4170 "../browser/extensions/api/mdns/dns_sd_registry_unittest.cc", |
| 4171 "../browser/extensions/api/mdns/mdns_api_unittest.cc", | 4171 "../browser/extensions/api/mdns/mdns_api_unittest.cc", |
| 4172 ] | 4172 ] |
| 4173 } | 4173 } |
| 4174 if (is_win) { |
| 4175 sources += |
| 4176 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ] |
| 4177 } |
| 4174 if (!is_chromeos) { | 4178 if (!is_chromeos) { |
| 4175 sources += [ | 4179 sources += [ |
| 4176 "../browser/extensions/api/messaging/native_message_process_host_unittes
t.cc", | 4180 "../browser/extensions/api/messaging/native_message_process_host_unittes
t.cc", |
| 4177 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit
test.cc", | 4181 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit
test.cc", |
| 4178 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni
ttest.cc", | 4182 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni
ttest.cc", |
| 4179 ] | 4183 ] |
| 4180 } | 4184 } |
| 4181 if (enable_media_router) { | 4185 if (enable_media_router) { |
| 4182 sources += [ | 4186 sources += [ |
| 4183 "../browser/media/cast_remoting_sender_unittest.cc", | 4187 "../browser/media/cast_remoting_sender_unittest.cc", |
| (...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5230 } | 5234 } |
| 5231 | 5235 |
| 5232 if (is_win) { | 5236 if (is_win) { |
| 5233 loadable_module("conflicts_dll") { | 5237 loadable_module("conflicts_dll") { |
| 5234 testonly = true | 5238 testonly = true |
| 5235 sources = [ | 5239 sources = [ |
| 5236 "conflicts/conflicts_dll.cc", | 5240 "conflicts/conflicts_dll.cc", |
| 5237 ] | 5241 ] |
| 5238 } | 5242 } |
| 5239 } | 5243 } |
| OLD | NEW |