| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "//ipc", | 50 "//ipc", |
| 51 "//media", | 51 "//media", |
| 52 "//net:net_with_v8", | 52 "//net:net_with_v8", |
| 53 "//printing/features", | 53 "//printing/features", |
| 54 "//services/image_decoder:lib", | 54 "//services/image_decoder:lib", |
| 55 "//services/image_decoder/public/cpp", | 55 "//services/image_decoder/public/cpp", |
| 56 "//services/service_manager/public/cpp", | 56 "//services/service_manager/public/cpp", |
| 57 "//skia", | 57 "//skia", |
| 58 "//sql", | 58 "//sql", |
| 59 "//third_party/libxml", | 59 "//third_party/libxml", |
| 60 "//third_party/libxslt", |
| 60 ] | 61 ] |
| 61 | 62 |
| 62 if (!is_android) { | 63 if (!is_android) { |
| 63 sources += [ | 64 sources += [ |
| 64 "importer/bookmark_html_reader.cc", | 65 "importer/bookmark_html_reader.cc", |
| 65 "importer/bookmark_html_reader.h", | 66 "importer/bookmark_html_reader.h", |
| 66 "importer/bookmarks_file_importer.cc", | 67 "importer/bookmarks_file_importer.cc", |
| 67 "importer/bookmarks_file_importer.h", | 68 "importer/bookmarks_file_importer.h", |
| 68 "importer/edge_database_reader_win.cc", | 69 "importer/edge_database_reader_win.cc", |
| 69 "importer/edge_database_reader_win.h", | 70 "importer/edge_database_reader_win.h", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 } else { | 172 } else { |
| 172 sources -= [ | 173 sources -= [ |
| 173 "printing_handler.cc", | 174 "printing_handler.cc", |
| 174 "printing_handler.h", | 175 "printing_handler.h", |
| 175 ] | 176 ] |
| 176 } | 177 } |
| 177 | 178 |
| 178 if (is_mac && safe_browsing_mode == 1) { | 179 if (is_mac && safe_browsing_mode == 1) { |
| 179 deps += [ "//chrome/utility/safe_browsing/mac" ] | 180 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 180 } | 181 } |
| 182 |
| 183 if (enable_media_router) { |
| 184 sources += [ |
| 185 "media_router/dial_device_description_parser.cc", |
| 186 "media_router/dial_device_description_parser.h", |
| 187 ] |
| 188 } |
| 181 } | 189 } |
| OLD | NEW |