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

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

Issue 1989893004: media: Use platform specific folders for CDMs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: specify both paths in chrome.release Created 4 years, 7 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/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
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.
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698