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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 | 204 |
205 public_deps += [ | 205 public_deps += [ |
206 "//components/printing/common", | 206 "//components/printing/common", |
207 "//printing", | 207 "//printing", |
208 ] | 208 ] |
209 if (enable_print_preview) { | 209 if (enable_print_preview) { |
210 # Full printing support. | 210 # Full printing support. |
211 sources += rebase_path(gypi_values.chrome_common_service_process_sources, | 211 sources += rebase_path(gypi_values.chrome_common_service_process_sources, |
212 ".", | 212 ".", |
213 "//chrome") | 213 "//chrome") |
| 214 |
| 215 if (is_win) { |
| 216 deps = [ |
| 217 # TODO(fdoray): Remove this once the PreRead field trial has expired. |
| 218 # crbug.com/577698 |
| 219 "//components/startup_metric_utils/common", |
| 220 ] |
| 221 } |
214 } | 222 } |
215 } | 223 } |
216 | 224 |
217 if (is_android) { | 225 if (is_android) { |
218 sources -= [ | 226 sources -= [ |
219 "channel_info_posix.cc", | 227 "channel_info_posix.cc", |
220 "media_galleries/metadata_types.h", | 228 "media_galleries/metadata_types.h", |
221 ] | 229 ] |
222 } else { | 230 } else { |
223 # Non-Android. | 231 # Non-Android. |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 ":constants", | 393 ":constants", |
386 "//base", | 394 "//base", |
387 ] | 395 ] |
388 } | 396 } |
389 | 397 |
390 mojom("mojo_bindings") { | 398 mojom("mojo_bindings") { |
391 sources = [ | 399 sources = [ |
392 "resource_usage_reporter.mojom", | 400 "resource_usage_reporter.mojom", |
393 ] | 401 ] |
394 } | 402 } |
OLD | NEW |