Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(894)

Side by Side Diff: chrome/utility/BUILD.gn

Issue 2745653008: [Media Router] Parse device description xml in utility process (Closed)
Patch Set: use mojo instead of IPC Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698