| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 "//chrome/browser/safe_browsing:chunk_proto", | 451 "//chrome/browser/safe_browsing:chunk_proto", |
| 452 "//chrome/browser/safe_browsing:metadata_proto", | 452 "//chrome/browser/safe_browsing:metadata_proto", |
| 453 "//chrome/browser/safe_browsing:report_proto", | 453 "//chrome/browser/safe_browsing:report_proto", |
| 454 ] | 454 ] |
| 455 if (safe_browsing_mode == 1) { | 455 if (safe_browsing_mode == 1) { |
| 456 sources += | 456 sources += |
| 457 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, | 457 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, |
| 458 ".", | 458 ".", |
| 459 "//chrome") | 459 "//chrome") |
| 460 deps += [ "//chrome/common/safe_browsing:proto" ] | 460 deps += [ "//chrome/common/safe_browsing:proto" ] |
| 461 if (is_win) { |
| 462 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] |
| 463 } |
| 461 } else if (safe_browsing_mode == 3) { | 464 } else if (safe_browsing_mode == 3) { |
| 462 sources += rebase_path( | 465 sources += rebase_path( |
| 463 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources, | 466 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources, |
| 464 ".", | 467 ".", |
| 465 "//chrome") | 468 "//chrome") |
| 466 } | 469 } |
| 467 } | 470 } |
| 468 | 471 |
| 469 if (enable_hotwording) { | 472 if (enable_hotwording) { |
| 470 defines += [ "ENABLE_HOTWORDING" ] | 473 defines += [ "ENABLE_HOTWORDING" ] |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1210 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1213 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1211 deps = [ | 1214 deps = [ |
| 1212 "//components/google/core/browser", | 1215 "//components/google/core/browser", |
| 1213 "//components/omnibox/browser", | 1216 "//components/omnibox/browser", |
| 1214 "//components/rlz", | 1217 "//components/rlz", |
| 1215 "//components/search_engines", | 1218 "//components/search_engines", |
| 1216 "//rlz:rlz_lib", | 1219 "//rlz:rlz_lib", |
| 1217 ] | 1220 ] |
| 1218 } | 1221 } |
| 1219 } | 1222 } |
| OLD | NEW |