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

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

Issue 2582463003: media: Verify CDM Host files (Closed)
Patch Set: Polished! Created 3 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path.
9 import("//extensions/features/features.gni") 9 import("//extensions/features/features.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 public_deps = [ 166 public_deps = [
167 ":features", 167 ":features",
168 ":mojo_bindings", 168 ":mojo_bindings",
169 "//base:base", 169 "//base:base",
170 "//base:base_static", 170 "//base:base_static",
171 "//base:i18n", 171 "//base:i18n",
172 "//chrome:resources", 172 "//chrome:resources",
173 "//chrome:strings", 173 "//chrome:strings",
174 "//chrome/app/theme:theme_resources", 174 "//chrome/app/theme:theme_resources",
175 "//chrome/common:constants", 175 "//chrome/common:constants",
176 "//chrome/common:version_header",
jrummell 2017/01/18 21:46:45 Is this needed? It appears you add it on line 540,
xhwang 2017/01/18 22:29:08 Good catch. I forgot to remove this line. Done.
176 "//chrome/common/net", 177 "//chrome/common/net",
177 "//chrome/common/safe_browsing:proto", 178 "//chrome/common/safe_browsing:proto",
178 "//chrome/installer/util:with_no_strings", 179 "//chrome/installer/util:with_no_strings",
179 "//components/autofill/content/common:ipc_traits", 180 "//components/autofill/content/common:ipc_traits",
180 "//components/autofill/core/common", 181 "//components/autofill/core/common",
181 "//components/cast_certificate", 182 "//components/cast_certificate",
182 "//components/cdm/common", 183 "//components/cdm/common",
183 "//components/cloud_devices/common", 184 "//components/cloud_devices/common",
184 "//components/component_updater", 185 "//components/component_updater",
185 "//components/content_settings/core/common", 186 "//components/content_settings/core/common",
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 524
524 if (enable_vr_shell) { 525 if (enable_vr_shell) {
525 defines += [ "ENABLE_VR_SHELL" ] 526 defines += [ "ENABLE_VR_SHELL" ]
526 } 527 }
527 528
528 if (is_linux) { 529 if (is_linux) {
529 deps = [ 530 deps = [
530 "//sandbox/linux:sandbox_services", 531 "//sandbox/linux:sandbox_services",
531 ] 532 ]
532 } 533 }
534
535 if (enable_pepper_cdms) {
536 sources += [
537 "media/cdm_host_file_path.cc",
538 "media/cdm_host_file_path.h",
539 ]
540 public_deps += [ "//chrome/common:version_header" ]
541 }
533 } 542 }
534 543
535 process_version("version_header") { 544 process_version("version_header") {
536 # TODO(brettw) this should have more reduced visibility, but chrome/browser 545 # TODO(brettw) this should have more reduced visibility, but chrome/browser
537 # currently depends on this. 546 # currently depends on this.
538 #visibility = [ ":*" ] 547 #visibility = [ ":*" ]
539 548
540 sources = [ 549 sources = [
541 "//build/util/LASTCHANGE", 550 "//build/util/LASTCHANGE",
542 "//chrome/VERSION", 551 "//chrome/VERSION",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 mojom("instant_mojom") { 705 mojom("instant_mojom") {
697 sources = [ 706 sources = [
698 "instant.mojom", 707 "instant.mojom",
699 ] 708 ]
700 709
701 public_deps = [ 710 public_deps = [
702 "//mojo/common:common_custom_types", 711 "//mojo/common:common_custom_types",
703 "//url/mojo:url_mojom_gurl", 712 "//url/mojo:url_mojom_gurl",
704 ] 713 ]
705 } 714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698