| 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("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 ] | 492 ] |
| 493 } | 493 } |
| 494 if (safe_browsing_mode != 0) { | 494 if (safe_browsing_mode != 0) { |
| 495 sources += | 495 sources += |
| 496 rebase_path(gypi_values.chrome_browser_safe_browsing_basic_sources, | 496 rebase_path(gypi_values.chrome_browser_safe_browsing_basic_sources, |
| 497 ".", | 497 ".", |
| 498 "//chrome") | 498 "//chrome") |
| 499 deps += [ | 499 deps += [ |
| 500 "//chrome/browser/safe_browsing:chunk_proto", | 500 "//chrome/browser/safe_browsing:chunk_proto", |
| 501 "//chrome/browser/safe_browsing:metadata_proto", | 501 "//chrome/browser/safe_browsing:metadata_proto", |
| 502 "//chrome/browser/safe_browsing:report_proto", | 502 "//chrome/common/safe_browsing:proto", |
| 503 ] | 503 ] |
| 504 if (safe_browsing_mode == 1) { | 504 if (safe_browsing_mode == 1) { |
| 505 sources += | 505 sources += |
| 506 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, | 506 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, |
| 507 ".", | 507 ".", |
| 508 "//chrome") | 508 "//chrome") |
| 509 deps += [ "//chrome/common/safe_browsing:proto" ] | 509 deps += [ "//chrome/common/safe_browsing:proto" ] |
| 510 if (is_win) { | 510 if (is_win) { |
| 511 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] | 511 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] |
| 512 } | 512 } |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1244 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1245 deps = [ | 1245 deps = [ |
| 1246 "//components/google/core/browser", | 1246 "//components/google/core/browser", |
| 1247 "//components/omnibox/browser", | 1247 "//components/omnibox/browser", |
| 1248 "//components/rlz", | 1248 "//components/rlz", |
| 1249 "//components/search_engines", | 1249 "//components/search_engines", |
| 1250 "//rlz:rlz_lib", | 1250 "//rlz:rlz_lib", |
| 1251 ] | 1251 ] |
| 1252 } | 1252 } |
| 1253 } | 1253 } |
| OLD | NEW |