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 | 9 |
10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 "//chrome/browser/safe_browsing:chunk_proto", | 437 "//chrome/browser/safe_browsing:chunk_proto", |
438 "//chrome/browser/safe_browsing:metadata_proto", | 438 "//chrome/browser/safe_browsing:metadata_proto", |
439 "//chrome/browser/safe_browsing:report_proto", | 439 "//chrome/browser/safe_browsing:report_proto", |
440 ] | 440 ] |
441 if (safe_browsing_mode == 1) { | 441 if (safe_browsing_mode == 1) { |
442 sources += | 442 sources += |
443 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, | 443 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, |
444 ".", | 444 ".", |
445 "//chrome") | 445 "//chrome") |
446 deps += [ "//chrome/common/safe_browsing:proto" ] | 446 deps += [ "//chrome/common/safe_browsing:proto" ] |
| 447 } else if (safe_browsing_mode == 3) { |
| 448 sources += rebase_path( |
| 449 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources, |
| 450 ".", |
| 451 "//chrome") |
447 } | 452 } |
448 } | 453 } |
449 | 454 |
450 if (is_linux) { | 455 if (is_linux) { |
451 deps += [ | 456 deps += [ |
452 "//device/media_transfer_protocol", | 457 "//device/media_transfer_protocol", |
453 "//device/udev_linux", | 458 "//device/udev_linux", |
454 ] | 459 ] |
455 } | 460 } |
456 if (is_linux && !is_chromeos) { | 461 if (is_linux && !is_chromeos) { |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1131 ] | 1136 ] |
1132 } | 1137 } |
1133 | 1138 |
1134 if (enable_wifi_bootstrapping) { | 1139 if (enable_wifi_bootstrapping) { |
1135 sources += [ | 1140 sources += [ |
1136 "local_discovery/wifi/mock_wifi_manager.cc", | 1141 "local_discovery/wifi/mock_wifi_manager.cc", |
1137 "local_discovery/wifi/mock_wifi_manager.h", | 1142 "local_discovery/wifi/mock_wifi_manager.h", |
1138 ] | 1143 ] |
1139 } | 1144 } |
1140 } | 1145 } |
OLD | NEW |