Chromium Code Reviews| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//components/spellcheck/spellcheck_build_features.gni") | 7 import("//components/spellcheck/spellcheck_build_features.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//ppapi/features/features.gni") | 10 import("//ppapi/features/features.gni") |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 "safe_browsing/phishing_dom_feature_extractor.h", | 210 "safe_browsing/phishing_dom_feature_extractor.h", |
| 211 "safe_browsing/phishing_term_feature_extractor.cc", | 211 "safe_browsing/phishing_term_feature_extractor.cc", |
| 212 "safe_browsing/phishing_term_feature_extractor.h", | 212 "safe_browsing/phishing_term_feature_extractor.h", |
| 213 "safe_browsing/phishing_url_feature_extractor.cc", | 213 "safe_browsing/phishing_url_feature_extractor.cc", |
| 214 "safe_browsing/phishing_url_feature_extractor.h", | 214 "safe_browsing/phishing_url_feature_extractor.h", |
| 215 "safe_browsing/scorer.cc", | 215 "safe_browsing/scorer.cc", |
| 216 "safe_browsing/scorer.h", | 216 "safe_browsing/scorer.h", |
| 217 ] | 217 ] |
| 218 deps += [ | 218 deps += [ |
| 219 "//chrome/common/safe_browsing:proto", | 219 "//chrome/common/safe_browsing:proto", |
| 220 "//components/safe_browsing:csd_proto", | |
|
Nathan Parker
2017/03/08 17:31:43
Is this not needed on Android? (sb_mode == 2)
Jialiu Lin
2017/03/08 18:31:33
The places in chrome/renderer need csd.proto are a
| |
| 220 "//third_party/smhasher:murmurhash3", | 221 "//third_party/smhasher:murmurhash3", |
| 221 ] | 222 ] |
| 222 } | 223 } |
| 223 } | 224 } |
| 224 | 225 |
| 225 if (enable_extensions) { | 226 if (enable_extensions) { |
| 226 sources += [ | 227 sources += [ |
| 227 "extensions/app_bindings.cc", | 228 "extensions/app_bindings.cc", |
| 228 "extensions/app_bindings.h", | 229 "extensions/app_bindings.h", |
| 229 "extensions/automation_internal_custom_bindings.cc", | 230 "extensions/automation_internal_custom_bindings.cc", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 398 ] | 399 ] |
| 399 } | 400 } |
| 400 | 401 |
| 401 if (is_android) { | 402 if (is_android) { |
| 402 sources -= [ | 403 sources -= [ |
| 403 "safe_browsing/mock_feature_extractor_clock.cc", | 404 "safe_browsing/mock_feature_extractor_clock.cc", |
| 404 "safe_browsing/mock_feature_extractor_clock.h", | 405 "safe_browsing/mock_feature_extractor_clock.h", |
| 405 ] | 406 ] |
| 406 } | 407 } |
| 407 } | 408 } |
| OLD | NEW |