| 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 4105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4116 # target. | 4116 # target. |
| 4117 "//tools/json_schema_compiler/test:unit_tests", | 4117 "//tools/json_schema_compiler/test:unit_tests", |
| 4118 ] | 4118 ] |
| 4119 if (enable_service_discovery) { | 4119 if (enable_service_discovery) { |
| 4120 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ] | 4120 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ] |
| 4121 } | 4121 } |
| 4122 if (is_win) { | 4122 if (is_win) { |
| 4123 sources += | 4123 sources += |
| 4124 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ] | 4124 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ] |
| 4125 } | 4125 } |
| 4126 if (!is_chromeos) { | 4126 if (is_chromeos) { |
| 4127 sources += [ "../browser/extensions/api/file_system/consent_provider_unitt
est.cc" ] |
| 4128 } else { |
| 4127 sources += [ | 4129 sources += [ |
| 4128 "../browser/extensions/api/messaging/native_message_process_host_unittes
t.cc", | 4130 "../browser/extensions/api/messaging/native_message_process_host_unittes
t.cc", |
| 4129 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit
test.cc", | 4131 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit
test.cc", |
| 4130 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni
ttest.cc", | 4132 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni
ttest.cc", |
| 4131 ] | 4133 ] |
| 4132 } | 4134 } |
| 4133 } | 4135 } |
| 4134 if (use_ash) { | 4136 if (use_ash) { |
| 4135 sources += [ | 4137 sources += [ |
| 4136 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc", | 4138 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc", |
| (...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5140 } | 5142 } |
| 5141 | 5143 |
| 5142 if (is_win) { | 5144 if (is_win) { |
| 5143 loadable_module("conflicts_dll") { | 5145 loadable_module("conflicts_dll") { |
| 5144 testonly = true | 5146 testonly = true |
| 5145 sources = [ | 5147 sources = [ |
| 5146 "conflicts/conflicts_dll.cc", | 5148 "conflicts/conflicts_dll.cc", |
| 5147 ] | 5149 ] |
| 5148 } | 5150 } |
| 5149 } | 5151 } |
| OLD | NEW |