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 4378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4389 | 4389 |
4390 if (enable_captive_portal_detection) { | 4390 if (enable_captive_portal_detection) { |
4391 sources += [ | 4391 sources += [ |
4392 "../browser/captive_portal/captive_portal_service_unittest.cc", | 4392 "../browser/captive_portal/captive_portal_service_unittest.cc", |
4393 "../browser/captive_portal/captive_portal_tab_helper_unittest.cc", | 4393 "../browser/captive_portal/captive_portal_tab_helper_unittest.cc", |
4394 "../browser/captive_portal/captive_portal_tab_reloader_unittest.cc", | 4394 "../browser/captive_portal/captive_portal_tab_reloader_unittest.cc", |
4395 ] | 4395 ] |
4396 } | 4396 } |
4397 if (enable_session_service) { | 4397 if (enable_session_service) { |
4398 sources += [ | 4398 sources += [ |
| 4399 "../browser/sessions/session_restore_observer_unittest.cc", |
4399 "../browser/sessions/session_restore_stats_collector_unittest.cc", | 4400 "../browser/sessions/session_restore_stats_collector_unittest.cc", |
4400 "../browser/sessions/session_service_unittest.cc", | 4401 "../browser/sessions/session_service_unittest.cc", |
4401 "../browser/sessions/tab_loader_unittest.cc", | 4402 "../browser/sessions/tab_loader_unittest.cc", |
4402 ] | 4403 ] |
4403 | 4404 |
4404 if (is_mac && !mac_views_browser) { | 4405 if (is_mac && !mac_views_browser) { |
4405 sources += [ "../browser/ui/startup/session_crashed_infobar_delegate_unitt
est.cc" ] | 4406 sources += [ "../browser/ui/startup/session_crashed_infobar_delegate_unitt
est.cc" ] |
4406 } | 4407 } |
4407 } | 4408 } |
4408 if (enable_webrtc) { | 4409 if (enable_webrtc) { |
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5166 } | 5167 } |
5167 | 5168 |
5168 if (is_win) { | 5169 if (is_win) { |
5169 loadable_module("conflicts_dll") { | 5170 loadable_module("conflicts_dll") { |
5170 testonly = true | 5171 testonly = true |
5171 sources = [ | 5172 sources = [ |
5172 "conflicts/conflicts_dll.cc", | 5173 "conflicts/conflicts_dll.cc", |
5173 ] | 5174 ] |
5174 } | 5175 } |
5175 } | 5176 } |
OLD | NEW |