| 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 4458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4469 | 4469 |
| 4470 if (enable_captive_portal_detection) { | 4470 if (enable_captive_portal_detection) { |
| 4471 sources += [ | 4471 sources += [ |
| 4472 "../browser/captive_portal/captive_portal_service_unittest.cc", | 4472 "../browser/captive_portal/captive_portal_service_unittest.cc", |
| 4473 "../browser/captive_portal/captive_portal_tab_helper_unittest.cc", | 4473 "../browser/captive_portal/captive_portal_tab_helper_unittest.cc", |
| 4474 "../browser/captive_portal/captive_portal_tab_reloader_unittest.cc", | 4474 "../browser/captive_portal/captive_portal_tab_reloader_unittest.cc", |
| 4475 ] | 4475 ] |
| 4476 } | 4476 } |
| 4477 if (enable_session_service) { | 4477 if (enable_session_service) { |
| 4478 sources += [ | 4478 sources += [ |
| 4479 "../browser/page_load_metrics/observers/session_restore_page_load_metrics_
observer_unittest.cc", |
| 4479 "../browser/sessions/session_restore_observer_unittest.cc", | 4480 "../browser/sessions/session_restore_observer_unittest.cc", |
| 4480 "../browser/sessions/session_restore_stats_collector_unittest.cc", | 4481 "../browser/sessions/session_restore_stats_collector_unittest.cc", |
| 4481 "../browser/sessions/session_service_unittest.cc", | 4482 "../browser/sessions/session_service_unittest.cc", |
| 4482 "../browser/sessions/tab_loader_unittest.cc", | 4483 "../browser/sessions/tab_loader_unittest.cc", |
| 4483 ] | 4484 ] |
| 4484 | 4485 |
| 4485 if (is_mac && !mac_views_browser) { | 4486 if (is_mac && !mac_views_browser) { |
| 4486 sources += [ "../browser/ui/startup/session_crashed_infobar_delegate_unitt
est.cc" ] | 4487 sources += [ "../browser/ui/startup/session_crashed_infobar_delegate_unitt
est.cc" ] |
| 4487 } | 4488 } |
| 4488 } | 4489 } |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5257 } | 5258 } |
| 5258 | 5259 |
| 5259 if (is_win) { | 5260 if (is_win) { |
| 5260 loadable_module("conflicts_dll") { | 5261 loadable_module("conflicts_dll") { |
| 5261 testonly = true | 5262 testonly = true |
| 5262 sources = [ | 5263 sources = [ |
| 5263 "conflicts/conflicts_dll.cc", | 5264 "conflicts/conflicts_dll.cc", |
| 5264 ] | 5265 ] |
| 5265 } | 5266 } |
| 5266 } | 5267 } |
| OLD | NEW |