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", | |
ddorwin
2016/05/20 04:08:56
Add "Needed by chrome_paths.cc." like the .gyp, es
xhwang
2016/05/20 07:18:19
Done.
| |
348 "//third_party/widevine/cdm:version_h", | 349 "//third_party/widevine/cdm:version_h", |
349 ] | 350 ] |
350 | 351 |
351 if (is_android) { | 352 if (is_android) { |
352 # This dependency must only be added for Android. | 353 # This dependency must only be added for Android. |
353 # | 354 # |
354 # On Windows, //chrome/installer/util depends on this target to get | 355 # On Windows, //chrome/installer/util depends on this target to get |
355 # constants. That target is in turn used in a number of installer helper | 356 # constants. That target is in turn used in a number of installer helper |
356 # targets independent of Chrome that we want to keep small. So we don't | 357 # targets independent of Chrome that we want to keep small. So we don't |
357 # want something large like //ui/base. | 358 # want something large like //ui/base. |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
431 mojom("mojo_bindings") { | 432 mojom("mojo_bindings") { |
432 sources = [ | 433 sources = [ |
433 "image_decoder.mojom", | 434 "image_decoder.mojom", |
434 "resource_usage_reporter.mojom", | 435 "resource_usage_reporter.mojom", |
435 ] | 436 ] |
436 | 437 |
437 public_deps = [ | 438 public_deps = [ |
438 "//skia/public/interfaces", | 439 "//skia/public/interfaces", |
439 ] | 440 ] |
440 } | 441 } |
OLD | NEW |