| 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 | 7 |
| 8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("../chrome_utility.gypi") ], | 9 [ rebase_path("../chrome_utility.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "printing_handler.h", | 106 "printing_handler.h", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 if (!enable_mdns) { | 110 if (!enable_mdns) { |
| 111 sources -= [ | 111 sources -= [ |
| 112 "local_discovery/service_discovery_message_handler.cc", | 112 "local_discovery/service_discovery_message_handler.cc", |
| 113 "local_discovery/service_discovery_message_handler.h", | 113 "local_discovery/service_discovery_message_handler.h", |
| 114 ] | 114 ] |
| 115 } | 115 } |
| 116 | |
| 117 if (safe_browsing_mode == 1) { | |
| 118 defines += [ "FULL_SAFE_BROWSING" ] | |
| 119 } | |
| 120 } | 116 } |
| OLD | NEW |