| 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 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2367 } | 2367 } |
| 2368 } | 2368 } |
| 2369 if (enable_web_speech) { | 2369 if (enable_web_speech) { |
| 2370 sources += [ | 2370 sources += [ |
| 2371 "../browser/speech/extension_api/tts_extension_apitest.cc", | 2371 "../browser/speech/extension_api/tts_extension_apitest.cc", |
| 2372 "../browser/speech/speech_recognition_browsertest.cc", | 2372 "../browser/speech/speech_recognition_browsertest.cc", |
| 2373 ] | 2373 ] |
| 2374 } | 2374 } |
| 2375 if (safe_browsing_mode == 1) { | 2375 if (safe_browsing_mode == 1) { |
| 2376 sources += [ | 2376 sources += [ |
| 2377 "../browser/safe_browsing/certificate_reporting_service_browsertest.cc", |
| 2377 "../browser/safe_browsing/permission_reporter_browsertest.cc", | 2378 "../browser/safe_browsing/permission_reporter_browsertest.cc", |
| 2378 "../browser/safe_browsing/safe_browsing_blocking_page_test.cc", | 2379 "../browser/safe_browsing/safe_browsing_blocking_page_test.cc", |
| 2379 "../browser/safe_browsing/safe_browsing_navigation_observer_browsertest.
cc", | 2380 "../browser/safe_browsing/safe_browsing_navigation_observer_browsertest.
cc", |
| 2380 "../browser/safe_browsing/safe_browsing_service_browsertest.cc", | 2381 "../browser/safe_browsing/safe_browsing_service_browsertest.cc", |
| 2381 "../renderer/safe_browsing/phishing_classifier_browsertest.cc", | 2382 "../renderer/safe_browsing/phishing_classifier_browsertest.cc", |
| 2382 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc", | 2383 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc", |
| 2383 "../renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc
", | 2384 "../renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc
", |
| 2384 "../renderer/safe_browsing/threat_dom_details_browsertest.cc", | 2385 "../renderer/safe_browsing/threat_dom_details_browsertest.cc", |
| 2385 ] | 2386 ] |
| 2386 } | 2387 } |
| (...skipping 2728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5115 } | 5116 } |
| 5116 | 5117 |
| 5117 if (is_win) { | 5118 if (is_win) { |
| 5118 loadable_module("conflicts_dll") { | 5119 loadable_module("conflicts_dll") { |
| 5119 testonly = true | 5120 testonly = true |
| 5120 sources = [ | 5121 sources = [ |
| 5121 "conflicts/conflicts_dll.cc", | 5122 "conflicts/conflicts_dll.cc", |
| 5122 ] | 5123 ] |
| 5123 } | 5124 } |
| 5124 } | 5125 } |
| OLD | NEW |