| 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 4402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4413 | 4413 |
| 4414 if (enable_captive_portal_detection) { | 4414 if (enable_captive_portal_detection) { |
| 4415 sources += [ | 4415 sources += [ |
| 4416 "../browser/captive_portal/captive_portal_service_unittest.cc", | 4416 "../browser/captive_portal/captive_portal_service_unittest.cc", |
| 4417 "../browser/captive_portal/captive_portal_tab_helper_unittest.cc", | 4417 "../browser/captive_portal/captive_portal_tab_helper_unittest.cc", |
| 4418 "../browser/captive_portal/captive_portal_tab_reloader_unittest.cc", | 4418 "../browser/captive_portal/captive_portal_tab_reloader_unittest.cc", |
| 4419 ] | 4419 ] |
| 4420 } | 4420 } |
| 4421 if (enable_session_service) { | 4421 if (enable_session_service) { |
| 4422 sources += [ | 4422 sources += [ |
| 4423 "../browser/page_load_metrics/observers/session_restore_page_load_metrics_
observer_unittest.cc", |
| 4423 "../browser/sessions/session_restore_observer_unittest.cc", | 4424 "../browser/sessions/session_restore_observer_unittest.cc", |
| 4424 "../browser/sessions/session_restore_stats_collector_unittest.cc", | 4425 "../browser/sessions/session_restore_stats_collector_unittest.cc", |
| 4425 "../browser/sessions/session_service_unittest.cc", | 4426 "../browser/sessions/session_service_unittest.cc", |
| 4426 "../browser/sessions/tab_loader_unittest.cc", | 4427 "../browser/sessions/tab_loader_unittest.cc", |
| 4427 ] | 4428 ] |
| 4428 | 4429 |
| 4429 if (is_mac && !mac_views_browser) { | 4430 if (is_mac && !mac_views_browser) { |
| 4430 sources += [ "../browser/ui/startup/session_crashed_infobar_delegate_unitt
est.cc" ] | 4431 sources += [ "../browser/ui/startup/session_crashed_infobar_delegate_unitt
est.cc" ] |
| 4431 } | 4432 } |
| 4432 } | 4433 } |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5195 } | 5196 } |
| 5196 | 5197 |
| 5197 if (is_win) { | 5198 if (is_win) { |
| 5198 loadable_module("conflicts_dll") { | 5199 loadable_module("conflicts_dll") { |
| 5199 testonly = true | 5200 testonly = true |
| 5200 sources = [ | 5201 sources = [ |
| 5201 "conflicts/conflicts_dll.cc", | 5202 "conflicts/conflicts_dll.cc", |
| 5202 ] | 5203 ] |
| 5203 } | 5204 } |
| 5204 } | 5205 } |
| OLD | NEW |