| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 10 # produces a conflict for the "grit" template so we have to only include one. | 10 # produces a conflict for the "grit" template so we have to only include one. |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 "//ppapi:ppapi_ipc", | 316 "//ppapi:ppapi_ipc", |
| 317 "//third_party/adobe/flash:flapper_version_h", | 317 "//third_party/adobe/flash:flapper_version_h", |
| 318 ] | 318 ] |
| 319 } | 319 } |
| 320 if (safe_browsing_mode != 0) { | 320 if (safe_browsing_mode != 0) { |
| 321 sources += rebase_path( | 321 sources += rebase_path( |
| 322 gypi_values.chrome_browser_basic_safe_browsing_sources, | 322 gypi_values.chrome_browser_basic_safe_browsing_sources, |
| 323 ".", "//chrome") | 323 ".", "//chrome") |
| 324 deps += [ | 324 deps += [ |
| 325 "//chrome/browser/safe_browsing:chunk_proto", | 325 "//chrome/browser/safe_browsing:chunk_proto", |
| 326 "//chrome/browser/safe_browsing:metadata_proto", |
| 326 "//chrome/browser/safe_browsing:report_proto", | 327 "//chrome/browser/safe_browsing:report_proto", |
| 327 ] | 328 ] |
| 328 if (safe_browsing_mode == 1) { | 329 if (safe_browsing_mode == 1) { |
| 329 sources += rebase_path( | 330 sources += rebase_path( |
| 330 gypi_values.chrome_browser_full_safe_browsing_sources, | 331 gypi_values.chrome_browser_full_safe_browsing_sources, |
| 331 ".", "//chrome") | 332 ".", "//chrome") |
| 332 defines += [ "FULL_SAFE_BROWSING" ] | 333 defines += [ "FULL_SAFE_BROWSING" ] |
| 333 deps += [ | 334 deps += [ |
| 334 "//chrome/common/safe_browsing:proto", | 335 "//chrome/common/safe_browsing:proto", |
| 335 ] | 336 ] |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 ] | 931 ] |
| 931 } | 932 } |
| 932 | 933 |
| 933 if (enable_wifi_bootstrapping) { | 934 if (enable_wifi_bootstrapping) { |
| 934 sources += [ | 935 sources += [ |
| 935 "local_discovery/wifi/mock_wifi_manager.cc", | 936 "local_discovery/wifi/mock_wifi_manager.cc", |
| 936 "local_discovery/wifi/mock_wifi_manager.h", | 937 "local_discovery/wifi/mock_wifi_manager.h", |
| 937 ] | 938 ] |
| 938 } | 939 } |
| 939 } | 940 } |
| OLD | NEW |