| 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/sysroot.gni") | 7 import("//build/config/sysroot.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 | 10 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 } else { | 175 } else { |
| 176 sources -= [ | 176 sources -= [ |
| 177 "printing_handler.cc", | 177 "printing_handler.cc", |
| 178 "printing_handler.h", | 178 "printing_handler.h", |
| 179 ] | 179 ] |
| 180 } | 180 } |
| 181 | 181 |
| 182 if (is_mac && safe_browsing_mode == 1) { | 182 if (is_mac && safe_browsing_mode == 1) { |
| 183 deps += [ "//chrome/utility/safe_browsing/mac" ] | 183 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 184 } | 184 } |
| 185 |
| 186 if (enable_media_router) { |
| 187 sources += [ |
| 188 "media_router/dial_device_description_parser_impl.cc", |
| 189 "media_router/dial_device_description_parser_impl.h", |
| 190 ] |
| 191 } |
| 185 } | 192 } |
| OLD | NEW |