| 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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 "//chrome/browser/safe_browsing:chunk_proto", | 473 "//chrome/browser/safe_browsing:chunk_proto", |
| 474 "//chrome/browser/safe_browsing:metadata_proto", | 474 "//chrome/browser/safe_browsing:metadata_proto", |
| 475 "//chrome/browser/safe_browsing:report_proto", | 475 "//chrome/browser/safe_browsing:report_proto", |
| 476 ] | 476 ] |
| 477 if (safe_browsing_mode == 1) { | 477 if (safe_browsing_mode == 1) { |
| 478 sources += | 478 sources += |
| 479 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, | 479 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, |
| 480 ".", | 480 ".", |
| 481 "//chrome") | 481 "//chrome") |
| 482 deps += [ "//chrome/common/safe_browsing:proto" ] | 482 deps += [ "//chrome/common/safe_browsing:proto" ] |
| 483 if (is_win) { |
| 484 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] |
| 485 } |
| 483 } else if (safe_browsing_mode == 3) { | 486 } else if (safe_browsing_mode == 3) { |
| 484 sources += rebase_path( | 487 sources += rebase_path( |
| 485 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources, | 488 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources, |
| 486 ".", | 489 ".", |
| 487 "//chrome") | 490 "//chrome") |
| 488 } | 491 } |
| 489 } | 492 } |
| 490 | 493 |
| 491 if (enable_hotwording) { | 494 if (enable_hotwording) { |
| 492 defines += [ "ENABLE_HOTWORDING" ] | 495 defines += [ "ENABLE_HOTWORDING" ] |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1244 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1242 deps = [ | 1245 deps = [ |
| 1243 "//components/google/core/browser", | 1246 "//components/google/core/browser", |
| 1244 "//components/omnibox/browser", | 1247 "//components/omnibox/browser", |
| 1245 "//components/rlz", | 1248 "//components/rlz", |
| 1246 "//components/search_engines", | 1249 "//components/search_engines", |
| 1247 "//rlz:rlz_lib", | 1250 "//rlz:rlz_lib", |
| 1248 ] | 1251 ] |
| 1249 } | 1252 } |
| 1250 } | 1253 } |
| OLD | NEW |