| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 ] | 496 ] |
| 497 if (safe_browsing_mode == 1) { | 497 if (safe_browsing_mode == 1) { |
| 498 sources += | 498 sources += |
| 499 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, | 499 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, |
| 500 ".", | 500 ".", |
| 501 "//chrome") | 501 "//chrome") |
| 502 deps += [ "//chrome/common/safe_browsing:proto" ] | 502 deps += [ "//chrome/common/safe_browsing:proto" ] |
| 503 if (is_win) { | 503 if (is_win) { |
| 504 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] | 504 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] |
| 505 } | 505 } |
| 506 } else if (safe_browsing_mode == 3) { | 506 } else if (safe_browsing_mode == 2) { |
| 507 sources += rebase_path( | 507 sources += |
| 508 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources, | 508 rebase_path(gypi_values.chrome_browser_safe_browsing_mobile_sources, |
| 509 ".", | 509 ".", |
| 510 "//chrome") | 510 "//chrome") |
| 511 } | 511 } |
| 512 } | 512 } |
| 513 | 513 |
| 514 if (enable_hotwording) { | 514 if (enable_hotwording) { |
| 515 defines += [ "ENABLE_HOTWORDING" ] | 515 defines += [ "ENABLE_HOTWORDING" ] |
| 516 } | 516 } |
| 517 | 517 |
| 518 if (is_linux) { | 518 if (is_linux) { |
| 519 deps += [ "//device/media_transfer_protocol" ] | 519 deps += [ "//device/media_transfer_protocol" ] |
| 520 } | 520 } |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1253 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1253 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1254 deps = [ | 1254 deps = [ |
| 1255 "//components/google/core/browser", | 1255 "//components/google/core/browser", |
| 1256 "//components/omnibox/browser", | 1256 "//components/omnibox/browser", |
| 1257 "//components/rlz", | 1257 "//components/rlz", |
| 1258 "//components/search_engines", | 1258 "//components/search_engines", |
| 1259 "//rlz:rlz_lib", | 1259 "//rlz:rlz_lib", |
| 1260 ] | 1260 ] |
| 1261 } | 1261 } |
| 1262 } | 1262 } |
| OLD | NEW |