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 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 public_deps = [ | 338 public_deps = [ |
339 "//content/public/common:result_codes", | 339 "//content/public/common:result_codes", |
340 ] | 340 ] |
341 deps = [ | 341 deps = [ |
342 ":features", | 342 ":features", |
343 ":version_header", | 343 ":version_header", |
344 "//base", | 344 "//base", |
345 "//base/third_party/dynamic_annotations", | 345 "//base/third_party/dynamic_annotations", |
346 "//components/bookmarks/common", | 346 "//components/bookmarks/common", |
347 "//components/nacl/common:switches", | 347 "//components/nacl/common:switches", |
348 "//media:cdm_paths", # Needed by chrome_paths.cc. | |
349 "//third_party/widevine/cdm:version_h", | 348 "//third_party/widevine/cdm:version_h", |
350 ] | 349 ] |
351 | 350 |
352 if (is_android) { | 351 if (is_android) { |
353 # This dependency must only be added for Android. | 352 # This dependency must only be added for Android. |
354 # | 353 # |
355 # On Windows, //chrome/installer/util depends on this target to get | 354 # On Windows, //chrome/installer/util depends on this target to get |
356 # constants. That target is in turn used in a number of installer helper | 355 # constants. That target is in turn used in a number of installer helper |
357 # targets independent of Chrome that we want to keep small. So we don't | 356 # targets independent of Chrome that we want to keep small. So we don't |
358 # want something large like //ui/base. | 357 # want something large like //ui/base. |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 mojom("mojo_bindings") { | 431 mojom("mojo_bindings") { |
433 sources = [ | 432 sources = [ |
434 "image_decoder.mojom", | 433 "image_decoder.mojom", |
435 "resource_usage_reporter.mojom", | 434 "resource_usage_reporter.mojom", |
436 ] | 435 ] |
437 | 436 |
438 public_deps = [ | 437 public_deps = [ |
439 "//skia/public/interfaces", | 438 "//skia/public/interfaces", |
440 ] | 439 ] |
441 } | 440 } |
OLD | NEW |