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

Side by Side Diff: content/public/common/BUILD.gn

Issue 1612663002: Use a valid /prefetch argument when launching a process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bit
Patch Set: Created 4 years, 11 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 # See //content/BUILD.gn for how this works. 10 # See //content/BUILD.gn for how this works.
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "pepper_plugin_info.h", 102 "pepper_plugin_info.h",
103 ] 103 ]
104 } 104 }
105 105
106 if (enable_webrtc) { 106 if (enable_webrtc) {
107 sources += [ 107 sources += [
108 "webrtc_ip_handling_policy.cc", 108 "webrtc_ip_handling_policy.cc",
109 "webrtc_ip_handling_policy.h", 109 "webrtc_ip_handling_policy.h",
110 ] 110 ]
111 } 111 }
112
113 if (is_win) {
114 deps += [ "//components/startup_metric_utils/common" ]
115 }
112 } 116 }
113 117
114 mojom("mojo_bindings") { 118 mojom("mojo_bindings") {
115 sources = [ 119 sources = [
116 "background_sync.mojom", 120 "background_sync.mojom",
117 "mojo_geoposition.mojom", 121 "mojo_geoposition.mojom",
118 "permission_status.mojom", 122 "permission_status.mojom",
119 "service_worker_event_status.mojom", 123 "service_worker_event_status.mojom",
120 ] 124 ]
121 } 125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698